#ifndef ENTITY_H #define ENTITY_H #include #include class Entity { public: Entity(); ~Entity(); const boost::uuids::uuid& getUuid() {return uuid;}; private: boost::uuids::uuid uuid; }; #endif //ENTITY_H