]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkUtilities.h
2397 BBTK Feature New Normal Feature GetBoxesInside for showing the tree of a blackbo...
[bbtk.git] / kernel / src / bbtkUtilities.h
index 5a68f5f8b9cf379648b2c4d9ed687faf827d581c..1f8f6c3552f43b1f8ab765d9d28e61234b941878 100644 (file)
@@ -201,7 +201,20 @@ namespace bbtk
     
     
   };
-
+class NodeTreeC 
+{
+public:
+       std::string data;
+       std::vector<NodeTreeC> childs;
+
+       NodeTreeC();
+       NodeTreeC(std::string _data);
+       ~NodeTreeC();
+       void insertChild(std::string _data);
+       void treeTour(int lvl);
+       void setData(std::string _data);
+       void deleteTree();
+};
   
 } // namespace bbtk