barrier/base/XBase.h

47 lines
762 B
C
Raw Normal View History

2001-10-06 14:13:28 +00:00
#ifndef XBASE_H
#define XBASE_H
#include "CString.h"
#include "stdpre.h"
2001-10-06 14:13:28 +00:00
#include <exception>
#include "stdpost.h"
2001-10-06 14:13:28 +00:00
class XBase : public std::exception {
2002-04-29 14:40:01 +00:00
public:
2001-10-06 14:13:28 +00:00
XBase();
XBase(const CString& msg);
virtual ~XBase();
// std::exception overrides
virtual const char* what() const;
2002-04-29 14:40:01 +00:00
protected:
2001-10-06 14:13:28 +00:00
// returns a human readable string describing the exception
virtual CString getWhat() const throw() = 0;
// look up a message and format it
virtual CString format(const char* id,
const char* defaultFormat, ...) const throw();
2001-10-06 14:13:28 +00:00
2002-04-29 14:40:01 +00:00
private:
2001-10-06 14:13:28 +00:00
mutable CString m_what;
};
class MXErrno {
2002-04-29 14:40:01 +00:00
public:
2001-10-06 14:13:28 +00:00
MXErrno();
MXErrno(int);
// manipulators
// accessors
int getErrno() const;
const char* getErrstr() const;
2002-04-29 14:40:01 +00:00
private:
2001-10-06 14:13:28 +00:00
int m_errno;
};
#endif