Removed unused function #4601

This commit is contained in:
Jerry (Xinyu Hou) 2015-05-21 15:19:00 -07:00
parent c22e327eed
commit 8b49eb6595
2 changed files with 0 additions and 15 deletions

View File

@ -43,20 +43,6 @@ ClientProxy1_6::~ClientProxy1_6()
{
}
bool
ClientProxy1_6::parseMessage(const UInt8* code)
{
//TODO:: parse data tansfer
if (memcmp(code, kMsgDFileTransfer, 4) == 0) {
fileChunkReceived();
}
else {
return ClientProxy1_5::parseMessage(code);
}
return true;
}
void
ClientProxy1_6::setClipboard(ClipboardID id, const IClipboard* clipboard)
{

View File

@ -28,7 +28,6 @@ public:
ClientProxy1_6(const String& name, synergy::IStream* adoptedStream, Server* server, IEventQueue* events);
~ClientProxy1_6();
virtual bool parseMessage(const UInt8* code);
virtual void setClipboard(ClipboardID id, const IClipboard* clipboard);
private: