repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git] / src / apps / bootmanager / BootManagerWindow.h
blob65c036676d33e9bff89a73d75e1d9c36f48fa463
1 /*
2 * Copyright 2008-2010, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Michael Pfeiffer <laplace@users.sourceforge.net>
7 */
8 #ifndef BOOT_MANAGER_WINDOW_H
9 #define BOOT_MANAGER_WINDOW_H
12 #include <Window.h>
14 #include "BootManagerController.h"
17 class WizardView;
20 class BootManagerWindow : public BWindow {
21 public:
22 BootManagerWindow();
23 virtual ~BootManagerWindow();
25 virtual void MessageReceived(BMessage* message);
26 virtual bool QuitRequested();
28 private:
29 BootManagerController fController;
30 WizardView* fWizardView;
34 #endif // BOOT_MANAGER_WINDOW_H