diff options
Diffstat (limited to 'utils.h')
-rw-r--r-- | utils.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/utils.h b/utils.h new file mode 100644 index 00000000..4ff8a006 --- /dev/null +++ b/utils.h @@ -0,0 +1,24 @@ +#ifndef _UTILS_H +#define _UTILS_H + +#include <system.hh> + +// jww (2007-04-23): Need to clean up the following include files. I +// want to following services: +// +// error reporting via exceptions +// error context stack and display (copy-by-value) +// logging (always on, but with user-settable levels) +// assert (always on, unless the users asks for them off) +// timing of critical areas (and warning on variance from expectation) +// debugging (optionally on) +// verification (optionally on, like debugging but silent) +// memory tracing and debugging (and watching for threshholds) + +#include "trace.h" +#include "debug.h" +#include "timing.h" +#include "error.h" +#include "util.h" + +#endif // _UTILS_H |