Changeset 755 for cpp/frams/_demos
- Timestamp:
- 03/14/18 23:52:40 (7 years ago)
- Location:
- cpp/frams/_demos
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/_demos/paramtree_print.cpp
r723 r755 20 20 #endif 21 21 22 static void printLines(ParamTree:: Node *n, bool first = true)22 static void printLines(ParamTree::ParamTreeNode *n, bool first = true) 23 23 { 24 24 if (n->parent) … … 29 29 } 30 30 31 void printTree(ParamTree:: Node *n)31 void printTree(ParamTree::ParamTreeNode *n) 32 32 { 33 33 while (n != NULL) -
cpp/frams/_demos/paramtree_print.h
r723 r755 4 4 #include <frams/param/paramtree.h> 5 5 6 void printTree(ParamTree:: Node *n);6 void printTree(ParamTree::ParamTreeNode *n); 7 7 8 8 #endif
Note: See TracChangeset
for help on using the changeset viewer.