aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/server/BaseClientProxy.h
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2020-07-21 06:15:16 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2020-07-21 06:15:16 -0400
commit37a7155ea7c504b308a8afa642c653a12bbe5f84 (patch)
treebd68ea5d2a2400dcd04b1aa85617534e66aba94c /src/lib/server/BaseClientProxy.h
parent1ae09e76cde035d716763fc88b570535884cd50f (diff)
parentfbc30002ab3438356c0476e70c4577a0310d52c0 (diff)
Update upstream source from tag 'upstream/2.3.3+dfsg'
Update to upstream version '2.3.3+dfsg' with Debian dir f7eeed313bc1a4c2bda69f04f0316ee29651397f
Diffstat (limited to 'src/lib/server/BaseClientProxy.h')
-rw-r--r--src/lib/server/BaseClientProxy.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/server/BaseClientProxy.h b/src/lib/server/BaseClientProxy.h
index c7c23ff..a2c9459 100644
--- a/src/lib/server/BaseClientProxy.h
+++ b/src/lib/server/BaseClientProxy.h
@@ -19,7 +19,6 @@
#pragma once
#include "barrier/IClient.h"
-#include "base/String.h"
namespace barrier { class IStream; }
@@ -29,7 +28,7 @@ public:
/*!
\c name is the name of the client.
*/
- BaseClientProxy(const String& name);
+ BaseClientProxy(const std::string& name);
~BaseClientProxy();
//! @name manipulators
@@ -89,11 +88,11 @@ public:
virtual void sendDragInfo(UInt32 fileCount, const char* info,
size_t size) = 0;
virtual void fileChunkSending(UInt8 mark, char* data, size_t dataSize) = 0;
- virtual String getName() const;
+ virtual std::string getName() const;
virtual barrier::IStream*
getStream() const = 0;
private:
- String m_name;
+ std::string m_name;
SInt32 m_x, m_y;
};