Fix: Headers are now installed.
[libsex.git] / include / libsex / declare.hxx
blobb97152eb7b349818349edc361569cb6796d0d1e6
1 #ifndef LIBSEX_DECLARE_HXX
2 #define LIBSEX_DECLARE_HXX
4 #include <libsex/Exception.hxx>
6 /// Macro for declaring exception classes (.hxx).
7 #define LIBSEX_DECLARE(parent, name) \
8 class name : public parent\
9 {\
10 public:\
11 static const char* const TEMPLATE;\
12 name(const char* const errorMessage);\
13 name(\
14 const char* const errorMessage,\
15 const libsex::Exception& previous);\
18 #endif