1 2 3 4 5 6 7 8 9 10 11
#ifndef ALEXCPT_H #define ALEXCPT_H #include <exception> #define START_API_FUNC try #define END_API_FUNC catch(...) { std::terminate(); } #endif /* ALEXCPT_H */