00001 #ifndef HOLOWINDOW_H 00002 #define HOLOWINDOW_H 00003 00004 #include "guicast.h" 00005 00006 class HoloThread; 00007 class HoloWindow; 00008 00009 #include "filexml.h" 00010 #include "holo.h" 00011 #include "mutex.h" 00012 #include "pluginclient.h" 00013 00014 00015 PLUGIN_THREAD_HEADER(HoloMain, HoloThread, HoloWindow) 00016 00017 class HoloWindow : public BC_Window 00018 { 00019 public: 00020 HoloWindow(HoloMain *client, int x, int y); 00021 ~HoloWindow(); 00022 00023 int create_objects(); 00024 int close_event(); 00025 00026 HoloMain *client; 00027 }; 00028 00029 00030 00031 00032 00033 00034 #endif
1.5.5