2 * Copyright 2008-2010, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
6 * Michael Pfeiffer <laplace@users.sourceforge.net>
7 * Axel Dörfler <axeld@pinc-software.de>
11 #include "BootManagerWindow.h"
13 #include <Application.h>
17 #undef B_TRANSLATION_CONTEXT
18 #define B_TRANSLATION_CONTEXT "BootManager"
21 static const char* kSignature
= "application/x-vnd.Haiku-BootManager";
24 class BootManager
: public BApplication
{
28 virtual void ReadyToRun();
32 BootManager::BootManager()
34 BApplication(kSignature
)
40 BootManager::ReadyToRun()
42 BootManagerWindow
* window
= new BootManagerWindow();
51 main(int /*argc*/, char** /*argv*/)
53 BootManager application
;