00001 #ifndef ASSETREMOVE_H 00002 #define ASSETREMOVE_H 00003 00004 #include "guicast.h" 00005 #include "mwindow.inc" 00006 #include "thread.h" 00007 00008 00009 class AssetRemoveWindow : public BC_Window 00010 { 00011 public: 00012 AssetRemoveWindow(MWindow *mwindow); 00013 void create_objects(); 00014 MWindow *mwindow; 00015 }; 00016 class AssetRemoveThread : public Thread 00017 { 00018 public: 00019 AssetRemoveThread(MWindow *mwindow); 00020 void run(); 00021 MWindow *mwindow; 00022 }; 00023 00024 00025 #endif
1.4.4