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