xref: /haiku/src/apps/installer/InstallerApp.h (revision 24159a0c7d6d6dcba9f2a0c1a7c08d2c8167f21b)
1 /*
2  * Copyright 2005, Jérôme DUVAL. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #ifndef _InstallerApp_h
7 #define _InstallerApp_h
8 
9 #include <Application.h>
10 #include "InstallerWindow.h"
11 
12 class InstallerApp : public BApplication {
13 public:
14 	InstallerApp();
15 
16 public:
17 	virtual void AboutRequested();
18 	virtual void ReadyToRun();
19 
20 private:
21 	InstallerWindow *fWindow;
22 };
23 
24 #endif /* _InstallerApp_h */
25