#ifndef NODE_H #define NODE_H #include "core/object.h" class Node : public Object { public: Node(); ~Node(); protected: }; #endif