]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkUtilities.h
#2397 BBTK Feature New Normal Feature - GetBoxesInside for showing the tree of...
[bbtk.git] / kernel / src / bbtkUtilities.h
index 5a68f5f8b9cf379648b2c4d9ed687faf827d581c..fa2db5bec4a5fc9652174b05da5ae2094ea73b0f 100644 (file)
@@ -201,7 +201,20 @@ namespace bbtk
     
     
   };
-
+class BBTK_EXPORT 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