xref: /haiku/src/apps/installer/InstallerApp.h (revision 97dfeb96704e5dbc5bec32ad7b21379d0125e031)
1 /*
2  * Copyright 2005, Jérôme DUVAL. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef INSTALLER_APP_H
6 #define INSTALLER_APP_H
7 
8 
9 #include <Application.h>
10 #include <Catalog.h>
11 
12 #include "EULAWindow.h"
13 #include "InstallerWindow.h"
14 
15 
16 class InstallerApp : public BApplication {
17 public:
18 								InstallerApp();
19 
20 	virtual	void				MessageReceived(BMessage* message);
21 
22 	virtual	void				AboutRequested();
23 	virtual	void				ReadyToRun();
24 	virtual	void				Quit();
25 
26 private:
27 			EULAWindow*			fEULAWindow;
28 };
29 
30 #endif // INSTALLER_APP_H
31