Basic Image AlgorithmS Library  2.8.0
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
biasexit.hh
1 #ifndef __biasexit_hh__
2 #define __biasexit_hh__
3 
4 #include <bias_config.h>
5 
6 namespace BIAS {
7 
8  /// wrapper for exit()
9  /// Disables unreachable warnings.
10  /// Cannot be header implemented to avoid multiply defined symbols and wring cdecl on DLL build.
11  /// @author Jan Woetzel
12  void BIASDebug_EXPORT biasexit(const int status = 1);
13 
14 } // end namescape
15 
16 #endif // __biasexit_hh__
17 
void BIASDebug_EXPORT biasexit(const int status=1)
wrapper for exit() Disables unreachable warnings.
Definition: biasexit.cpp:16