diff options
Diffstat (limited to 'remote-processor/ConnectionSocket.h')
-rw-r--r-- | remote-processor/ConnectionSocket.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/remote-processor/ConnectionSocket.h b/remote-processor/ConnectionSocket.h index c90fc66..707579b 100644 --- a/remote-processor/ConnectionSocket.h +++ b/remote-processor/ConnectionSocket.h @@ -33,14 +33,12 @@ #include <string> -using namespace std; - class CConnectionSocket : public CSocket { public: CConnectionSocket(); // Connection - bool connect(const string& strRemote, uint16_t uiPort, string& strError); + bool connect(const std::string& strRemote, uint16_t uiPort, std::string& strError); }; |