xref: /haiku/src/tests/kits/interface/balert/alert_manual_test/AlertManualTestApp.h (revision fce4895d1884da5ae6fb299d23c735c598e690b1)
1 // AlertManualTestApp.h
2 
3 #ifndef ALERT_MANUAL_TEST_APP_H
4 #define ALERT_MANUAL_TEST_APP_H
5 
6 #include <Application.h>
7 
8 class AlertManualTestApp : public BApplication {
9 public:
10 	AlertManualTestApp();
11 
12 private:
13 	BWindow *fMainWindow;
14 };
15 
16 #endif // #ifndef ALERT_MANUAL_TEST_APP_H
17 
18