Changeset 6141 for trunk/ARBDBPP/arbdb++.hxx
- Timestamp:
- 14/08/09 16:29:27 (3 years ago)
- Files:
-
- 1 modified
-
trunk/ARBDBPP/arbdb++.hxx (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ARBDBPP/arbdb++.hxx
r5968 r6141 44 44 45 45 const int MINCACH = 1; 46 const int MAXCACH = 0; // schaltet cach ein bei open Funktionen46 const int MAXCACH = 0; // schaltet cache ein bei open Funktionen 47 47 const int CORE = 1; 48 48 49 typedef enum ad_edit_mod us{49 typedef enum ad_edit_mode { 50 50 AD_allign = 0, // add & remove of . possible (default) 51 51 AD_nowrite = 1, // no edits allowed … … 74 74 class AD_ERR 75 75 { 76 int modus;// Mode 0 = Errors, 1 = Warnings77 int anzahl;// Number of errors78 char *text; // error text79 76 int mode; // Mode 0 = Errors, 1 = Warnings 77 int anzahl; // Number of errors 78 char *text; // error text 79 80 80 public: 81 81 AD_ERR(); // create error … … 134 134 AD_ERR *open(const char *,int ); 135 135 AD_ERR *close(); 136 AD_ERR *save(const char *mod us);137 AD_ERR *save_as(const char *mod us);138 AD_ERR *save_home(const char *mod us);136 AD_ERR *save(const char *mode); 137 AD_ERR *save_as(const char *mode); 138 AD_ERR *save_home(const char *mode); 139 139 AD_ERR *push_transaction(); 140 140 AD_ERR *pop_transaction();
