home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
C
/
OTL-MC6.DMS
/
in.adf
/
incl.lha
/
INCLUDE
/
exception.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1994-09-17
|
236 b
|
17 lines
#ifndef INCLUDE_EXCEPTION_H
#define INCLUDE_EXCEPTION_H
class Exception
{ public:
virtual ~Exception() { }
};
void unexpected();
void terminate();
void (*set_unexpected(void(*)()))();
void (*set_terminate(void(*)()))();
#endif