]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkUtilities.h
#3120 BBTK Bug New Normal - merge branch changestoITK3and4 FROM master
[bbtk.git] / kernel / src / bbtkUtilities.h
index 5a68f5f8b9cf379648b2c4d9ed687faf827d581c..90bb34099c6ab2e10788795647f0626122cdb6ce 100644 (file)
@@ -197,11 +197,25 @@ namespace bbtk
     
     static bool loosematch(std::string stdLine,std::string stdOptions);
     
-   
+
+    static std::string GetEnvHome();
     
     
   };
-
+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