Rudiments
error.h
1 // Copyright (c) 2005 David Muse
2 // See the COPYING file for more information.
3 
4 #ifndef ERROR_H
5 #define ERROR_H
6 
7 #include <rudiments/private/errorincludes.h>
8 
11 class RUDIMENTS_DLLSPEC error {
12  public:
14  static void clearError();
15 
19  static void setErrorNumber(int32_t err);
20 
23  static int32_t getErrorNumber();
24 
29  static char *getErrorString();
30 };
31 
32 #endif