Switched from autotools to CMake.
[libsex.git] / tests / framework / CountingException.hxx
blob7822d6b2e16efd8176759ed13e9df8b551a157fc
1 #ifndef COUNTINGEXCEPTION_HXX
2 #define COUNTINGEXCEPTION_HXX
4 #include <source/Exception.hxx>
6 class CountingException : public libsex::Exception
8 public:
9 static int instances;
11 CountingException(const char* const);
12 ~CountingException() throw();
14 const libsex::Exception*
15 clone() const throw(std::bad_alloc);
18 #endif