#include <netcdfcpp.h>
Public Types | |
| enum | Behavior { silent_nonfatal = 0, verbose_nonfatal = NC_VERBOSE, silent_fatal = NC_FATAL, verbose_fatal = NC_FATAL | NC_VERBOSE } |
Public Member Functions | |
| NcError (Behavior b=verbose_fatal) | |
| virtual | ~NcError (void) |
| int | get_err (void) |
Private Attributes | |
| int | the_old_state |
| int | the_old_err |
Definition at line 446 of file netcdfcpp.h.
|
|
Definition at line 448 of file netcdfcpp.h. 00448 { 00449 silent_nonfatal = 0, 00450 verbose_nonfatal = NC_VERBOSE, 00451 silent_fatal = NC_FATAL, 00452 verbose_fatal = NC_FATAL | NC_VERBOSE 00453 };
|
|
|
Definition at line 1192 of file netcdf.cpp. References ncerr, ncopts, the_old_err, and the_old_state. 01193 { 01194 the_old_state = ncopts; // global variable in C interface 01195 the_old_err = ncerr; // global variable in C interface 01196 ncopts = (int) b; 01197 }
|
|
|
Definition at line 1199 of file netcdf.cpp. References ncerr, ncopts, the_old_err, and the_old_state. 01200 { 01201 ncopts = the_old_state; 01202 ncerr = the_old_err; 01203 }
|
|
|
Definition at line 1205 of file netcdf.cpp. References ncerr. 01206 { 01207 return ncerr; 01208 }
|
|
|
Definition at line 465 of file netcdfcpp.h. Referenced by NcError(), and ~NcError(). |
|
|
Definition at line 464 of file netcdfcpp.h. Referenced by NcError(), and ~NcError(). |
1.4.4