Fixed include directory name.
[libsex.git] / tests / framework / ExampleException1.hxx
blob112ca332d1b47abfd601b0ac750928861607ed41
1 /**
2 * @file
4 * Shows how to _declare_ basic exception class.
5 */
7 #ifndef EXAMPLEEXCEPTION1_HXX
8 #define EXAMPLEEXCEPTION1_HXX
10 #include <libsex/declare.hxx>
11 #include <libsex/Exception.hxx>
13 // ExampleException1 inherits from libsex::Exception.
14 LIBSEX_DECLARE(libsex::Exception, ExampleException1)
16 #endif