xref: /haiku/src/tests/kits/interface/balert/alert_manual_test/AlertManualTestApp.h (revision 658ffe9fcf2eb13200250690edc3260dc9040562)
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