#include "BootManagerWindow.h"
#include <Application.h>
#include <Catalog.h>
#undef B_TRANSLATION_CONTEXT
#define B_TRANSLATION_CONTEXT "BootManager"
static const char* kSignature = "application/x-vnd.Haiku-BootManager";
class BootManager : public BApplication {
public:
BootManager();
virtual void ReadyToRun();
};
BootManager::BootManager()
:
BApplication(kSignature)
{
}
void
BootManager::ReadyToRun()
{
BootManagerWindow* window = new BootManagerWindow();
window->Show();
}
int
main(int , char** )
{
BootManager application;
application.Run();
return 0;
}