xref: /haiku/src/apps/installer/InstallerApp.h (revision b6b0567fbd186f8ce8a0c90bdc7a7b5b4c649678)
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 #include <Application.h>
9 #include "InstallerWindow.h"
10 
11 
12 class InstallerApp : public BApplication {
13 public:
14 								InstallerApp();
15 
16 	virtual	void				MessageReceived(BMessage* message);
17 	virtual	void				AboutRequested();
18 	virtual	void				ReadyToRun();
19 
20 private:
21 			BWindow*			fEULAWindow;
22 };
23 
24 #endif // INSTALLER_APP_H
25