* Copyright 2005, Axel DΓΆrfler, axeld@pinc-software.de. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#include <Application.h>
#include "KeyboardInputDevice.h"
#include "TeamMonitorWindow.h"
#include <stdio.h>
#include <stdlib.h>
#if DEBUG
FILE *KeyboardInputDevice::sLogFile = NULL;
#endif
int
main()
{
BApplication app("application/x-vnd.tmwindow-test");
TeamMonitorWindow *window = new TeamMonitorWindow();
window->SetFlags(window->Flags() | B_QUIT_ON_WINDOW_CLOSE);
window->Enable();
BMessage message(SYSTEM_SHUTTING_DOWN);
window->PostMessage(&message);
app.Run();
}