summaryrefslogtreecommitdiff
path: root/orkbasecxx/OrkClient.h
diff options
context:
space:
mode:
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);