7 class QuestionWindow
: public BC_Window
10 QuestionWindow(MWindow
*mwindow
);
13 int create_objects(char *string
, int use_cancel
);
17 class QuestionYesButton
: public BC_GenericButton
20 QuestionYesButton(MWindow
*mwindow
, QuestionWindow
*window
, int x
, int y
);
25 QuestionWindow
*window
;
28 class QuestionNoButton
: public BC_GenericButton
31 QuestionNoButton(MWindow
*mwindow
, QuestionWindow
*window
, int x
, int y
);
36 QuestionWindow
*window
;