home *** CD-ROM | disk | FTP | other *** search
- #ifndef INCLUDE_EXCEPTION_H
- #define INCLUDE_EXCEPTION_H
-
- /*
- ** $VER: exception.h 10.1 (19.7.95)
- ** Includes Release 40.15
- **
- ** (C) Copyright 1995 Haage & Partner
- ** All Rights Reserved
- */
-
- class Exception
- { public:
- virtual ~Exception() { }
- };
-
- void unexpected();
- void terminate();
-
- void (*set_unexpected(void(*)()))();
- void (*set_terminate(void(*)()))();
-
- #endif
-