00001 #ifndef BCSUBWINDOW_H 00002 #define BCSUBWINDOW_H 00003 00004 #include "arraylist.h" 00005 #include "bcwindowbase.h" 00006 00007 class BC_SubWindow : public BC_WindowBase 00008 { 00009 public: 00010 BC_SubWindow(int x, int y, int w, int h, int bg_color = -1); 00011 virtual ~BC_SubWindow(); 00012 00013 virtual int initialize(); 00014 private: 00015 }; 00016 00017 class BC_SubWindowList : public ArrayList<BC_WindowBase*> 00018 { 00019 public: 00020 BC_SubWindowList(); 00021 ~BC_SubWindowList(); 00022 00023 00024 private: 00025 00026 }; 00027 00028 00029 00030 #endif
1.4.4