home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef _NSTRING_MISC_H_
- #define _NSTRING_MISC_H_
-
- #include "NString.h"
-
- #ifdef USE_EXCEPTIONS
- #define OUT_OF_MEM(f) throw NString::OutOfMemory(__LINE__, __FILE__, f)
- #define USAGE_ERR(f, s) throw NString::UsageError(__LINE__, __FILE__, f, s)
- #else
- #define OUT_OF_MEM(f) NString::Out_of_Memory(__LINE__, __FILE__, f)
- #define USAGE_ERR(f, s) NString::panic(__LINE__, __FILE__, f, s)
- #endif
-
- #endif
-