barrier/lib/synergy/XSynergy.h

95 lines
1.6 KiB
C
Raw Normal View History

2001-10-06 14:13:28 +00:00
#ifndef XSYNERGY_H
#define XSYNERGY_H
#include "XBase.h"
//! Generic synergy exception
2001-10-06 14:13:28 +00:00
class XSynergy : public XBase { };
//! Client error exception
/*!
Thrown when the client fails to follow the protocol.
*/
2001-10-06 14:13:28 +00:00
class XBadClient : public XSynergy {
2002-04-29 14:40:01 +00:00
protected:
2001-10-06 14:13:28 +00:00
virtual CString getWhat() const throw();
};
//! Incompatible client exception
/*!
Thrown when a client attempting to connect has an incompatible version.
*/
2001-10-06 14:13:28 +00:00
class XIncompatibleClient : public XSynergy {
2002-04-29 14:40:01 +00:00
public:
2001-10-06 14:13:28 +00:00
XIncompatibleClient(int major, int minor);
//! @name accessors
//@{
2001-10-06 14:13:28 +00:00
//! Get client's major version number
2001-10-06 14:13:28 +00:00
int getMajor() const throw();
//! Get client's minor version number
2001-10-06 14:13:28 +00:00
int getMinor() const throw();
//@}
2002-04-29 14:40:01 +00:00
protected:
2001-10-06 14:13:28 +00:00
virtual CString getWhat() const throw();
2002-04-29 14:40:01 +00:00
private:
2001-10-06 14:13:28 +00:00
int m_major;
int m_minor;
};
//! Client already connected exception
/*!
Thrown when a client attempting to connect is using the same name as
a client that is already connected.
*/
class XDuplicateClient : public XSynergy {
public:
XDuplicateClient(const CString& name);
//! @name accessors
//@{
//! Get client's name
virtual const CString&
getName() const throw();
//@}
protected:
virtual CString getWhat() const throw();
private:
CString m_name;
};
//! Client not in map
/*!
Thrown when a client attempting to connect is using a name that is
unknown to the server.
*/
class XUnknownClient : public XSynergy {
public:
XUnknownClient(const CString& name);
//! @name accessors
//@{
//! Get the client's name
virtual const CString&
getName() const throw();
//@}
protected:
virtual CString getWhat() const throw();
private:
CString m_name;
};
2001-10-06 14:13:28 +00:00
#endif