Show
Ignore:
Timestamp:
14/08/09 16:29:27 (3 years ago)
Author:
westram
Message:
  • spellchecked all (phew)
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/PARSIMONY/AP_error.hxx

    r1115 r6141  
    33 
    44class AP_ERR 
    5     { 
    6     static int modus;   // Ausgabemodus 0 = keine Warnings, 1 = Warnings 
    7     int  anzahl;    // Anzahl der fehlertexte 
    8     const char *text;   // Zeiger auf fehlertext 
     5{ 
     6    static int  mode;                               // output mode 0 = no warnings, 1 = warnings 
     7    int         anzahl;                             // errortext count 
     8    const char *text;                               // pointer to errortext 
    99 
    10     public: 
    11     AP_ERR(const char *errorstring); // setzt den Fehler 
     10public: 
     11    AP_ERR(const char *errorstring);                // sets error 
    1212    AP_ERR(const char *,const int core); 
    1313    AP_ERR(const char *,const char *,const int core); 
    1414    AP_ERR(const char *,const char *); 
    1515    ~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}; 
    1920 
    2021#endif