]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/treemodel.h
various: reindent classes
[xonotic/netradiant.git] / radiant / treemodel.h
index a533f3e2765ef293efd6684b3c998097b6f42e06..5e8b58b5a386fdc926275b928fe77b0df100092c 100644 (file)
 
 struct GraphTreeModel;
 
-GraphTreeModel *graph_tree_model_new();
+GraphTreeModel* graph_tree_model_new();
+void graph_tree_model_delete( GraphTreeModel* model );
 
-void graph_tree_model_delete(GraphTreeModel *model);
-
-namespace scene {
-    class Instance;
+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