/**** * * Class QuitException is an exception object thrown to signal that the user * has requested to quit a program, e.g., by pressing a quit button or by * selecting a quit menu item. * */ #ifndef quitexceptionIncluded #define quitexceptionIncluded #include "std-macros.h" #ifndef OLD_EXCEPTION_HANDLING class QuitException {}; #else exception QuitException; #endif #endif