X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fstd%2Fsrc%2FbbstdConfiguration.h;h=00c89964bba5c7b203765adc42d15751138210b8;hb=2b7ac5ab18a67097a812e20a5ecba3dac63f29cc;hp=241b370c7563ef61bab1a3bfc5d96842111ede51;hpb=f5db17702a2c51a5933f6c556d070167e4db9cfd;p=bbtk.git diff --git a/packages/std/src/bbstdConfiguration.h b/packages/std/src/bbstdConfiguration.h index 241b370..00c8996 100644 --- a/packages/std/src/bbstdConfiguration.h +++ b/packages/std/src/bbstdConfiguration.h @@ -10,9 +10,11 @@ namespace bbstd public bbtk::AtomicBlackBox { BBTK_USER_BLACK_BOX_INTERFACE(Configuration,bbtk::AtomicBlackBox); - BBTK_DECLARE_OUTPUT(DataPath,std::string); - BBTK_DECLARE_OUTPUT(FileSeparator,std::string); - BBTK_DECLARE_OUTPUT(SystemType,int); + BBTK_DECLARE_OUTPUT(BinPath,std::string); + BBTK_DECLARE_OUTPUT(DataPath,std::string); + BBTK_DECLARE_OUTPUT(DocPath,std::string); + BBTK_DECLARE_OUTPUT(FileSeparator,std::string); + BBTK_DECLARE_OUTPUT(SystemType,int); BBTK_PROCESS(DoProcess); void DoProcess(); @@ -26,7 +28,9 @@ namespace bbstd BBTK_AUTHOR("jpr@creatis.insa-lyon.fr"); BBTK_CATEGORY("misc"); BBTK_DESCRIPTION("Gets configuration informations"); - BBTK_OUTPUT(Configuration,DataPath,"Sample Data Path",std::string); + BBTK_OUTPUT(Configuration,BinPath,"Binaries path",std::string); + BBTK_OUTPUT(Configuration,DataPath,"Data path",std::string); + BBTK_OUTPUT(Configuration,DocPath,"Documentation path",std::string); BBTK_OUTPUT(Configuration,FileSeparator,"/ or \\",std::string); BBTK_OUTPUT(Configuration,SystemType,"0=Linux 1=Windows",int); BBTK_END_DESCRIBE_BLACK_BOX(Configuration);