dropped "c" prefix from class names

This commit is contained in:
Nick Bolton 2014-11-11 13:51:47 +00:00
parent f6c05e7635
commit e8e156f0e2
382 changed files with 7430 additions and 7423 deletions

View file

@ -26,13 +26,13 @@
namespace synergy { class IStream; }
//! Generic proxy for client
class CClientProxy : public CBaseClientProxy {
class ClientProxy : public BaseClientProxy {
public:
/*!
\c name is the name of the client.
*/
CClientProxy(const CString& name, synergy::IStream* adoptedStream);
~CClientProxy();
ClientProxy(const String& name, synergy::IStream* adoptedStream);
~ClientProxy();
//! @name manipulators
//@{
@ -82,7 +82,7 @@ public:
virtual void mouseWheel(SInt32 xDelta, SInt32 yDelta) = 0;
virtual void screensaver(bool activate) = 0;
virtual void resetOptions() = 0;
virtual void setOptions(const COptionsList& options) = 0;
virtual void setOptions(const OptionsList& options) = 0;
virtual void sendDragInfo(UInt32 fileCount, const char* info,
size_t size) = 0;
virtual void fileChunkSending(UInt8 mark, char* data, size_t dataSize) = 0;