00001 #ifndef ERRORBOX_H 00002 #define ERRORBOX_H 00003 00004 #include "guicast.h" 00005 00006 class ErrorBox : public BC_Window 00007 { 00008 public: 00009 ErrorBox(char *title, 00010 int x = (int)BC_INFINITY, 00011 int y = (int)BC_INFINITY, 00012 int w = 400, 00013 int h = 120); 00014 virtual ~ErrorBox(); 00015 00016 int create_objects(char *text); 00017 }; 00018 00019 #endif 00020
1.4.4