summaryrefslogtreecommitdiff
path: root/orkbasecxx/OrkClient.h
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2006-06-29 16:34:29 +0000
committerHenri Herscher <henri@oreka.org>2006-06-29 16:34:29 +0000
commit3868172df25ae59bd0ecc524b782ac4734812891 (patch)
treef412f8f4d2b67165fbbf3670d114027bd9ff54c6 /orkbasecxx/OrkClient.h
parentff483592a2ff23b09c7924925c594e366f563a36 (diff)
DLL_IMPORT_EXPORT becomes DLL_IMPORT_EXPORT_ORKBASE, so that different DLLs can both import and export symbols.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@286 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkbasecxx/OrkClient.h')
-rw-r--r--orkbasecxx/OrkClient.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/orkbasecxx/OrkClient.h b/orkbasecxx/OrkClient.h
index 26e59a1..f1487dd 100644
--- a/orkbasecxx/OrkClient.h
+++ b/orkbasecxx/OrkClient.h
@@ -18,14 +18,14 @@
#include "messages/AsyncMessage.h"
/** Abstract base class for all clients. */
-class DLL_IMPORT_EXPORT OrkClient
+class DLL_IMPORT_EXPORT_ORKBASE OrkClient
{
public:
virtual bool Execute(SyncMessage& request, AsyncMessage& response, CStdString& hostname, int tcpPort, CStdString& serviceName, int timeout = 5) = 0;
};
/** Abstract base class for all clients based on http. */
-class DLL_IMPORT_EXPORT OrkHttpClient : public OrkClient
+class DLL_IMPORT_EXPORT_ORKBASE OrkHttpClient : public OrkClient
{
public:
virtual bool Execute(SyncMessage& request, AsyncMessage& response, CStdString& hostname, int tcpPort, CStdString& serviceName, int timeout = 5) = 0;
@@ -34,7 +34,7 @@ protected:
};
/** Client that uses a HTTP URL request and receives the response back in the SingleLine format. */
-class DLL_IMPORT_EXPORT OrkHttpSingleLineClient : public OrkHttpClient
+class DLL_IMPORT_EXPORT_ORKBASE OrkHttpSingleLineClient : public OrkHttpClient
{
public:
bool Execute(SyncMessage& request, AsyncMessage& response, CStdString& hostname, int tcpPort, CStdString& serviceName, int timeout = 5);