00001 #ifndef QUIT_H 00002 #define QUIT_H 00003 00004 #include "guicast.h" 00005 #include "mwindow.inc" 00006 #include "savefile.inc" 00007 00008 class Quit : public BC_MenuItem, public Thread 00009 { 00010 public: 00011 Quit(MWindow *mwindow); 00012 int create_objects(Save *save); 00013 int handle_event(); 00014 void run(); 00015 00016 Save *save; 00017 MWindow *mwindow; 00018 }; 00019 00020 #endif
1.4.4