]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdConfiguration.cxx
*** empty log message ***
[bbtk.git] / packages / std / src / bbstdConfiguration.cxx
index e5d8844e189551eab4c5f2849ad1845172fa0f6d..8981782aa6af169b5c3b43c78db9190acbd085be 100644 (file)
@@ -4,28 +4,29 @@
 #include "bbtkConfigurationFile.h"
 namespace bbstd
 {
-       BBTK_ADD_BLACK_BOX_TO_PACKAGE(std,Configuration)
-       BBTK_USER_BLACK_BOX_IMPLEMENTATION(Configuration,bbtk::AtomicBlackBox);
-
-       void Configuration::bbUserConstructor() 
-   { 
-
-   }
-
-       void Configuration::DoProcess()
-       {
-      bbSetOutputDataPath( bbtk::ConfigurationFile::GetInstance().Get_data_path() );
-      bbSetOutputDocPath( bbtk::ConfigurationFile::GetInstance().Get_doc_path() );
-      bbSetOutputFileSeparator( bbtk::ConfigurationFile::GetInstance().Get_file_separator() );
-
+  BBTK_ADD_BLACK_BOX_TO_PACKAGE(std,Configuration)
+    BBTK_USER_BLACK_BOX_IMPLEMENTATION(Configuration,bbtk::AtomicBlackBox);
+  
+  void Configuration::bbUserConstructor() 
+  { 
+    
+  }
+  
+  void Configuration::DoProcess()
+  {
+    bbSetOutputBinPath( bbtk::ConfigurationFile::GetInstance().Get_bin_path() );
+    bbSetOutputDataPath( bbtk::ConfigurationFile::GetInstance().Get_data_path() );
+    bbSetOutputDocPath( bbtk::ConfigurationFile::GetInstance().Get_doc_path() );
+    bbSetOutputFileSeparator( bbtk::ConfigurationFile::GetInstance().Get_file_separator() );
+    
 #if defined(__GNUC__)
-      bbSetOutputSystemType( 0 );
+    bbSetOutputSystemType( 0 );
 #elif defined(_WIN32)
-      bbSetOutputSystemType( 1 );
+    bbSetOutputSystemType( 1 );
 #else
-      bbSetOutputSystemType( -1 );
+    bbSetOutputSystemType( -1 );
 #endif
-
-       }
+    
+  }
 }
 // EO namespace bbstd