nuclear@54: /* nuclear@54: goat3d - 3D scene, character, and animation file format library. nuclear@54: Copyright (C) 2013-2014 John Tsiombikas nuclear@54: nuclear@54: This program is free software: you can redistribute it and/or modify nuclear@54: it under the terms of the GNU Lesser General Public License as published by nuclear@54: the Free Software Foundation, either version 3 of the License, or nuclear@54: (at your option) any later version. nuclear@54: nuclear@54: This program is distributed in the hope that it will be useful, nuclear@54: but WITHOUT ANY WARRANTY; without even the implied warranty of nuclear@54: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the nuclear@54: GNU Lesser General Public License for more details. nuclear@54: nuclear@54: You should have received a copy of the GNU Lesser General Public License nuclear@54: along with this program. If not, see . nuclear@54: */ nuclear@0: #ifndef NODE_H_ nuclear@0: #define NODE_H_ nuclear@0: nuclear@7: #include "xform_node.h" nuclear@8: #include "object.h" nuclear@0: nuclear@47: namespace g3dimpl { nuclear@47: nuclear@7: class Node : public XFormNode { nuclear@0: private: nuclear@7: Object *obj; nuclear@0: nuclear@0: public: nuclear@0: Node(); nuclear@0: nuclear@7: void set_object(Object *obj); nuclear@7: Object *get_object(); nuclear@7: const Object *get_object() const; nuclear@0: }; nuclear@0: nuclear@8: void delete_node_tree(Node *n); nuclear@8: nuclear@47: } // namespace g3dimpl nuclear@47: nuclear@0: #endif // NODE_H_