summaryrefslogtreecommitdiff
path: root/orkbasecxx/Config.h
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2007-03-02 02:33:11 +0000
committerHenri Herscher <henri@oreka.org>2007-03-02 02:33:11 +0000
commite450183032e8d72781d0129ac588ba60f11e1438 (patch)
tree5be8f38761bd8773ff1ed71867c956fb8ae7611f /orkbasecxx/Config.h
parent24ff9679ca23c8dce3edc3fec2370f8d33a257a2 (diff)
Added config parms.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@422 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkbasecxx/Config.h')
-rw-r--r--orkbasecxx/Config.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/orkbasecxx/Config.h b/orkbasecxx/Config.h
index 626fce2..bbd1bb2 100644
--- a/orkbasecxx/Config.h
+++ b/orkbasecxx/Config.h
@@ -78,6 +78,12 @@
#define TAPE_FILE_NAMING_PARAM "TapeFileNaming"
#define REMOTE_PROCESSING_INPUT_PATH_PARAM "RemoteProcessingInputPath"
#define REMOTE_PROCESSING_OUTPUT_PATH_PARAM "RemoteProcessingOutputPath"
+#define REMOTE_PROCESSING_HOSTNAME_PARAM "RemoteProcessingHostname"
+#define REMOTE_PROCESSING_HOSTNAME_DEFAULT "localhost"
+#define REMOTE_PROCESSING_TCP_PORT_PARAM "RemoteProcessingTcpPort"
+#define REMOTE_PROCESSING_TCP_PORT_DEFAULT 20000
+#define REMOTE_PROCESSING_SERVICE_NAME_PARAM "RemoteProcessingServiceName"
+#define REMOTE_PROCESSING_SERVICE_NAME_DEFAULT "orkaudio"
class DLL_IMPORT_EXPORT_ORKBASE Config : public Object
{
@@ -123,6 +129,9 @@ public:
std::list<CStdString> m_tapeFileNaming;
std::list<CStdString> m_remoteProcessingInputPath;
CStdString m_remoteProcessingOutputPath;
+ CStdString m_remoteProcessingHostname;
+ int m_remoteProcessingTcpPort;
+ CStdString m_remoteProcessingServiceName;
private:
log4cxx::LoggerPtr m_log;