#ifndef IHASEDITABLEMETA_H #define IHASEDITABLEMETA_H #include /** * 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