]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/treemodel.h
reformat code! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / radiant / treemodel.h
index 5e8b58b5a386fdc926275b928fe77b0df100092c..a533f3e2765ef293efd6684b3c998097b6f42e06 100644 (file)
 
 struct GraphTreeModel;
 
-GraphTreeModel* graph_tree_model_new();
-void graph_tree_model_delete( GraphTreeModel* model );
+GraphTreeModel *graph_tree_model_new();
 
-namespace scene
-{
-class Instance;
+void graph_tree_model_delete(GraphTreeModel *model);
+
+namespace scene {
+    class Instance;
 }
-void graph_tree_model_insert( GraphTreeModel* model, const scene::Instance& instance );
-void graph_tree_model_erase( GraphTreeModel* model, const scene::Instance& instance );
+
+void graph_tree_model_insert(GraphTreeModel *model, const scene::Instance &instance);
+
+void graph_tree_model_erase(GraphTreeModel *model, const scene::Instance &instance);
 
 #endif