xref: /haiku/src/apps/installer/InstallerApp.h (revision ed24eb5ff12640d052171c6a7feba37fab8a75d1)
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				ReadyToRun();
23 	virtual	void				Quit();
24 
25 private:
26 			EULAWindow*			fEULAWindow;
27 };
28 
29 #endif // INSTALLER_APP_H
30