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
Wrap
C/C++ Source or Header
|
1995-11-13
|
245b
|
17 lines
#ifndef _MYERROR_
#define _MYERROR_
#define KEY_SIZE 5 // size of key
CMyErrorClass
{
public:
CMyErrorClass();
~CMyErrorClass();
void Init();
void display( int key );
private:
CMapStringToString err_msg;
};
#endif