Files
haiku-beta6/src/preferences/keymap/KeymapApplication.cpp
T

40 lines
832 B
C++
Raw Normal View History

2004-07-14 16:10:25 +00:00
// ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
//
// Copyright (c) 2004, Haiku
//
// This software is part of the Haiku distribution and is covered
// by the Haiku license.
//
//
// File: KeymapApplication.cpp
// Author: Sandor Vroemisse, Jérôme Duval
// Description: Keymap Preferences
// Created : July 12, 2004
//
// ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
2002-07-09 12:24:59 +00:00
#include "KeymapApplication.h"
KeymapApplication::KeymapApplication()
: BApplication( APP_SIGNATURE )
{
// create the window
2005-08-23 11:28:52 +00:00
fWindow = new KeymapWindow();
2002-07-09 12:24:59 +00:00
fWindow->Show();
}
void KeymapApplication::MessageReceived( BMessage * message )
{
BApplication::MessageReceived( message );
}
2004-07-14 16:10:25 +00:00
int
main ()
2004-07-03 17:51:51 +00:00
{
new KeymapApplication;
be_app->Run();
delete be_app;
2004-07-14 16:10:25 +00:00
return B_OK;
2004-07-03 17:51:51 +00:00
}