summaryrefslogtreecommitdiff
path: root/orkbasecxx
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2007-02-19 19:40:24 +0000
committerHenri Herscher <henri@oreka.org>2007-02-19 19:40:24 +0000
commitedb1e76a6e163213c114086e965f64294b936bc3 (patch)
tree5d0cfaf19f18519d909d7d9e4908286b1e53b984 /orkbasecxx
parentb4f4029fa306b2753357c5f9c3e53968c3ba8e08 (diff)
Added config parms.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@412 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkbasecxx')
-rw-r--r--orkbasecxx/Config.cpp2
-rw-r--r--orkbasecxx/Config.h4
2 files changed, 6 insertions, 0 deletions
diff --git a/orkbasecxx/Config.cpp b/orkbasecxx/Config.cpp
index e6d2b40..691d4c9 100644
--- a/orkbasecxx/Config.cpp
+++ b/orkbasecxx/Config.cpp
@@ -89,6 +89,8 @@ void Config::Define(Serializer* s)
s->IntValue(CAPTURE_FILE_BATCH_SIZE_KBYTE_PARAM, m_captureFileBatchSizeKByte);
s->BoolValue(DEBUG_PARAM, m_debug);
s->CsvValue(TAPE_FILE_NAMING_PARAM, m_tapeFileNaming);
+ s->CsvValue(REMOTE_PROCESSING_INPUT_PATH_PARAM, m_remoteProcessingInputPath);
+ s->StringValue(REMOTE_PROCESSING_OUTPUT_PATH_PARAM, m_remoteProcessingOutputPath);
}
void Config::Validate()
diff --git a/orkbasecxx/Config.h b/orkbasecxx/Config.h
index d3eb61a..626fce2 100644
--- a/orkbasecxx/Config.h
+++ b/orkbasecxx/Config.h
@@ -76,6 +76,8 @@
#define DEBUG_PARAM "Debug"
#define DEBUG_DEFAULT false
#define TAPE_FILE_NAMING_PARAM "TapeFileNaming"
+#define REMOTE_PROCESSING_INPUT_PATH_PARAM "RemoteProcessingInputPath"
+#define REMOTE_PROCESSING_OUTPUT_PATH_PARAM "RemoteProcessingOutputPath"
class DLL_IMPORT_EXPORT_ORKBASE Config : public Object
{
@@ -119,6 +121,8 @@ public:
int m_captureFileBatchSizeKByte;
bool m_debug;
std::list<CStdString> m_tapeFileNaming;
+ std::list<CStdString> m_remoteProcessingInputPath;
+ CStdString m_remoteProcessingOutputPath;
private:
log4cxx::LoggerPtr m_log;