usermode/axwin4 - Blit to screen planned
[tpg/acess2.git] / Usermode / Applications / axwin4_src / Server / include / common.hpp
1 /*
2  */
3 #ifndef _COMMON_H_
4 #define _COMMON_H_
5
6 #include <exception>
7
8 namespace AxWin {
9
10 class InitFailure:
11         public ::std::exception
12 {
13         const char *m_what;
14 public:
15         InitFailure(const char *reason):
16                 m_what(reason)
17         {
18         }
19         
20         virtual const char* what() const throw();
21 };
22
23 }       // namespace AxWin
24
25 #endif
26

UCC git Repository :: git.ucc.asn.au