home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / STORM2.DMS / in.adf / Includes.LHA / exception.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-28  |  372 b   |  24 lines

  1. #ifndef INCLUDE_EXCEPTION_H
  2. #define INCLUDE_EXCEPTION_H
  3.  
  4. /*
  5. **  $VER: exception.h 10.1 (19.7.95)
  6. **  Includes Release 40.15
  7. **
  8. **  (C) Copyright 1995 Haage & Partner
  9. **     All Rights Reserved
  10. */
  11.  
  12. class Exception
  13. { public:
  14.     virtual ~Exception() { }
  15. };
  16.  
  17. void unexpected();
  18. void terminate();
  19.  
  20. void (*set_unexpected(void(*)()))();
  21. void (*set_terminate(void(*)()))();
  22.  
  23. #endif
  24.