barrier/net/XNetwork.h

52 lines
902 B
C
Raw Normal View History

#ifndef XNETWORK_H
#define XNETWORK_H
#include "XBase.h"
#include "CString.h"
class XNetwork : public XBase { };
class XNetworkUnavailable : public XNetwork {
2002-04-29 14:40:01 +00:00
protected:
// XBase overrides
virtual CString getWhat() const throw();
};
class XNetworkFailed : public XNetwork {
2002-04-29 14:40:01 +00:00
protected:
// XBase overrides
virtual CString getWhat() const throw();
};
class XNetworkVersion : public XNetwork {
2002-04-29 14:40:01 +00:00
public:
XNetworkVersion(int major, int minor) throw();
// accessors
int getMajor() const throw();
int getMinor() const throw();
2002-04-29 14:40:01 +00:00
protected:
// XBase overrides
virtual CString getWhat() const throw();
2002-04-29 14:40:01 +00:00
private:
int m_major;
int m_minor;
};
class XNetworkFunctionUnavailable : public XNetwork {
2002-04-29 14:40:01 +00:00
public:
XNetworkFunctionUnavailable(const char* name) throw();
2002-04-29 14:40:01 +00:00
protected:
// XBase overrides
virtual CString getWhat() const throw();
2002-04-29 14:40:01 +00:00
private:
CString m_name;
};
#endif