#ifndef __Object_h__ #define __Object_h__ #include "includes" namespace core { class Object { public: std::string name; std::string tag; }; } #endif