Changeset 6141 for trunk/PARSIMONY/AP_error.hxx
- Timestamp:
- 14/08/09 16:29:27 (3 years ago)
- Files:
-
- 1 modified
-
trunk/PARSIMONY/AP_error.hxx (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/PARSIMONY/AP_error.hxx
r1115 r6141 3 3 4 4 class AP_ERR 5 {6 static int modus; // Ausgabemodus 0 = keine Warnings, 1 = Warnings7 int anzahl; // Anzahl der fehlertexte8 const char *text; // Zeiger auf fehlertext5 { 6 static int mode; // output mode 0 = no warnings, 1 = warnings 7 int anzahl; // errortext count 8 const char *text; // pointer to errortext 9 9 10 public:11 AP_ERR(const char *errorstring); // setzt den Fehler10 public: 11 AP_ERR(const char *errorstring); // sets error 12 12 AP_ERR(const char *,const int core); 13 13 AP_ERR(const char *,const char *,const int core); 14 14 AP_ERR(const char *,const char *); 15 15 ~AP_ERR(); 16 const char *show(); // shows error messages 17 void set_mode(int i); // set error mode 18 }; 16 17 const char *show(); // shows error messages 18 void set_mode(int i); // set error mode 19 }; 19 20 20 21 #endif
