]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkConfigurationFile.h
BUG slash
[bbtk.git] / kernel / src / bbtkConfigurationFile.h
index c871f14b81fe68f7b53febb8e70f4aea830cae93..3d2f92abdef5c13da1db0e646cefe6bfdfe6b898 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkConfigurationFile.h,v $
   Language:  C++
-  Date:      $Date: 2008/02/14 09:32:54 $
-  Version:   $Revision: 1.4 $
+  Date:      $Date: 2008/03/10 06:24:12 $
+  Version:   $Revision: 1.6 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See doc/license.txt or
 #include <vector>
 
 
+    // file separator
+#if defined(_WIN32)
+#define VALID_FILE_SEPARATOR "\\"
+#define INVALID_FILE_SEPARATOR "/"
+#else
+#define INVALID_FILE_SEPARATOR "\\"
+#define VALID_FILE_SEPARATOR "/"
+#endif
+
+
+
 namespace bbtk
 {
   //==========================================================================
@@ -73,14 +84,16 @@ namespace bbtk
     void InstallPath ();
     
   public:
+    void GetHelp(int level) const;
+
     inline const std::string& Get_description() const
     { return mDescription;}
-    inline const std::string& Get_url() const
-    { return mUrl;}
+    //    inline const std::string& Get_url() const
+    //    { return mUrl;}
     inline const std::string& Get_data_path() const
     { return mData_path;}  
     inline const std::string& Get_file_separator() const
-    { return mFile_separator;}
+       { return mFile_separator;}
     
     inline const std::string& Get_bin_path() const
     { return mBin_path;}