xref: /haiku/src/apps/bootmanager/BootManagerWindow.h (revision 2b76973fa2401f7a5edf68e6470f3d3210cbcff3)
1 /*
2  * Copyright 2008-2010, Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Michael Pfeiffer <laplace@users.sourceforge.net>
7  */
8 #ifndef BOOT_MANAGER_WINDOW_H
9 #define BOOT_MANAGER_WINDOW_H
10 
11 
12 #include <Window.h>
13 
14 #include "BootManagerController.h"
15 
16 
17 class WizardView;
18 
19 
20 class BootManagerWindow : public BWindow {
21 public:
22 								BootManagerWindow();
23 	virtual						~BootManagerWindow();
24 
25 	virtual	void				MessageReceived(BMessage* message);
26 	virtual	bool				QuitRequested();
27 
28 private:
29 			BootManagerController fController;
30 			WizardView*			fWizardView;
31 };
32 
33 
34 #endif	// BOOT_MANAGER_WINDOW_H
35