32 lines
770 B
C++
32 lines
770 B
C++
/*
|
||
* © Copyright 2014 – Urheberrechtshinweis
|
||
* Alle Rechte vorbehalten / All Rights Reserved
|
||
*
|
||
* Programmcode ist urheberrechtlich geschuetzt.
|
||
* Das Urheberrecht liegt, soweit nicht ausdruecklich anders gekennzeichnet, bei Frank Ebner.
|
||
* Keine Verwendung ohne explizite Genehmigung.
|
||
* (vgl. § 106 ff UrhG / § 97 UrhG)
|
||
*/
|
||
|
||
#ifndef IHASEDITABLEMETA_H
|
||
#define IHASEDITABLEMETA_H
|
||
|
||
#include <Indoor/floorplan/v2/Floorplan.h>
|
||
|
||
/**
|
||
* interface for all classes that provide editable meta information
|
||
*/
|
||
class IHasEditableMeta {
|
||
|
||
public:
|
||
|
||
/** get the meta-information object [if any] */
|
||
virtual Floorplan::Meta* getMeta() = 0;
|
||
|
||
/** set/overwrite the meta-information object */
|
||
virtual void setMeta(Floorplan::Meta* meta) = 0;
|
||
|
||
};
|
||
|
||
#endif // IHASEDITABLEMETA_H
|