home *** CD-ROM | disk | FTP | other *** search
/ Using Visual C++ 4 (Special Edition) / Using_Visual_C_4_Special_Edition_QUE_1996.iso / ch16 / myerror.h < prev   
C/C++ Source or Header  |  1995-11-13  |  245b  |  17 lines

  1. #ifndef _MYERROR_
  2. #define _MYERROR_
  3.  
  4. #define KEY_SIZE 5  // size of key
  5. CMyErrorClass
  6. {
  7.     public:
  8.         CMyErrorClass();
  9.         ~CMyErrorClass();
  10.  
  11.         void Init();
  12.         void display( int key );
  13.     private:
  14.         CMapStringToString err_msg;
  15. };
  16. #endif
  17.