treemodel.h
Go to the documentation of this file.00001
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #if !defined(INCLUDED_TREEMODEL_H)
00027 #define INCLUDED_TREEMODEL_H
00028
00029 #include "iscenegraph.h"
00030 #include "nameable.h"
00031
00032 struct GraphTreeModel;
00033
00034 GraphTreeModel* graph_tree_model_new ();
00035 void graph_tree_model_delete (GraphTreeModel* model);
00036 const std::string node_get_name (scene::Node& node);
00037
00038 namespace scene
00039 {
00040 class Instance;
00041 }
00042 void graph_tree_model_insert (GraphTreeModel* model, const scene::Instance& instance);
00043 void graph_tree_model_erase (GraphTreeModel* model, const scene::Instance& instance);
00044
00045 #endif