Some work toward Issue 27 and Issue 319

This commit is contained in:
Nick Bolton 2010-05-31 21:30:29 +00:00
parent fea12827d4
commit f974d8d680
74 changed files with 4057 additions and 3756 deletions

View file

@ -18,6 +18,7 @@
#include "IClient.h"
#include "IClipboard.h"
#include "CNetworkAddress.h"
#include "INode.h"
class CEventQueueTimer;
class CScreen;
@ -31,12 +32,13 @@ class IStreamFilterFactory;
/*!
This class implements the top-level client algorithms for synergy.
*/
class CClient : public IClient {
class CClient : public IClient, public INode {
public:
class CFailInfo {
public:
CFailInfo(const char* what) : m_retry(false), m_what(what) { }
bool m_retry;
char m_what[1];
CString m_what;
};
/*!