Changeset 6141 for trunk/PARSIMONY/AP_main.cxx
- Timestamp:
- 14/08/09 16:29:27 (3 years ago)
- Files:
-
- 1 modified
-
trunk/PARSIMONY/AP_main.cxx (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/PARSIMONY/AP_main.cxx
r5855 r6141 19 19 *************************/ 20 20 21 int AP_ERR::mod us= 0;21 int AP_ERR::mode = 0; 22 22 23 23 AP_ERR::~AP_ERR() … … 31 31 { 32 32 text = pntr; 33 if (mod us== 0) {33 if (mode == 0) { 34 34 cout << "\n*** WARNING *** \n" << text <<"\n"; 35 35 cout.flush(); … … 40 40 { 41 41 text = pntr2; 42 if (mod us== 0) {42 if (mode == 0) { 43 43 cout << "\n***** WARNING in " << pntr << "\n" << text <<"\n"; 44 44 cout.flush(); … … 70 70 71 71 void AP_ERR::set_mode(int i) { 72 mod us= i;72 mode = i; 73 73 } 74 74
