home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-12-20 | 554 b | 29 lines | [TEXT/CWIE] |
- ///////////////////////////////////////////////////////////////////////////////
- //
- // This file is a BDIAMOND addition.
- //
-
- #ifndef __CErrorControl_h__
- #define __CErrorControl_h__
-
- class CError;
-
- ///////////////////////////////////////////////////////////////////////////////
- //
- // CErrorControl class declaration.
- //
- // CErrorControl is a place to put functionality that is common to all
- // controls that handle CErrors.
- //
-
- class CErrorControl
- {
- public:
- CErrorControl(void);
- ~CErrorControl(void);
-
- friend CError;
-
- };
-
- #endif // __CErrorControl_h__