1 #ifndef SCENEGRAPHMODULE_H_
2 #define SCENEGRAPHMODULE_H_
3 
4 #include "generic/constant.h"
5 #include "CompiledGraph.h"
6 
7 class SceneGraphAPI
8 {
9 		CompiledGraph* _scenegraph;
10 	public:
11 		typedef scene::Graph Type;
12 		STRING_CONSTANT(Name, "*");
13 
14 		// Constructor
15 		SceneGraphAPI ();
16 		~SceneGraphAPI ();
17 
18 		// Accessor method to retrieve the contained CompiledGraph instance.
19 		scene::Graph* getTable ();
20 };
21 
22 // Accessor method to retrieve the treemodel from the CompiledGraph instance
23 GraphTreeModel* scene_graph_get_tree_model ();
24 
25 #endif /*SCENEGRAPHMODULE_H_*/
26