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
17class WizardView;
18
19
20class BootManagerWindow : public BWindow {
21public:
22								BootManagerWindow();
23	virtual						~BootManagerWindow();
24
25	virtual	void				MessageReceived(BMessage* message);
26	virtual	bool				QuitRequested();
27
28private:
29			BootManagerController fController;
30			WizardView*			fWizardView;
31};
32
33
34#endif	// BOOT_MANAGER_WINDOW_H
35