btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / apps / bootmanager / BootManager.cpp
blob4ea46380c4c8c764da1d52d54f4ffb96d0e745e4
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 * Axel Dörfler <axeld@pinc-software.de>
8 */
11 #include "BootManagerWindow.h"
13 #include <Application.h>
14 #include <Catalog.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 {
25 public:
26 BootManager();
28 virtual void ReadyToRun();
32 BootManager::BootManager()
34 BApplication(kSignature)
39 void
40 BootManager::ReadyToRun()
42 BootManagerWindow* window = new BootManagerWindow();
43 window->Show();
47 // #pragma mark -
50 int
51 main(int /*argc*/, char** /*argv*/)
53 BootManager application;
54 application.Run();
56 return 0;