#ifndef ENTITY_H #define ENTITY_H class Entity { public: long id; Entity() : id(0){}; ~Entity() = default; }; #endif // ENTITY_H