1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef BDE_QUESTION_H
- #define BDE_QUESTION_H
- #include "label.h"
- class Question : public Label {
- bool positive_answer;
- unistring yes_chars;
- unistring no_chars;
- public:
- Question(const char *aText);
- virtual bool handle_event(const Event &evt);
- bool get_answer() const { return positive_answer; }
- };
- #endif
|