/* ---------------------------------------------------------------------------- | ERR.HPP | | Author: Terence Leach | Revision: 1/17/96 | Revision: 4/12/02 Expanded to include ERR severities of ABORT and WARN -------------------------------------------------------------------------- Contains a class definition for an ERR handling object. */ #ifndef _ERR_ #define _ERR_ class ERR { public: // ... Object variables ----------------------------------------------------- static int m_Instances; // # of active instances currently active public: // ... Object operators ----------------------------------------------------- ERR ( void ); ~ERR ( void ); void Display ( char *pszResult ); void Warn ( char *pszWarningMessage ); void Abort ( char *pszAbortMessage_NoReturn ); void Show ( void *pMem ,char cType ,int nCount ); }; #endif