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