goat3d

view src/node.h @ 7:97139303348c

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 21 Aug 2013 04:00:22 +0300
parents 2918358f5e6d
children cd71f0b92f44
line source
1 #ifndef NODE_H_
2 #define NODE_H_
4 #include <string>
5 #include <vector>
6 #include "xform_node.h"
8 class Node : public XFormNode {
9 private:
10 Object *obj;
12 public:
13 Node();
14 virtual ~Node();
16 void set_object(Object *obj);
17 Object *get_object();
18 const Object *get_object() const;
19 };
21 #endif // NODE_H_