/* * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved. * Distributed under the terms of the MIT License. */ #include #include "KeyboardInputDevice.h" #include "TeamMonitorWindow.h" #include #include #if DEBUG FILE *KeyboardInputDevice::sLogFile = NULL; #endif int main() { BApplication app("application/x-vnd.tmwindow-test"); TeamMonitorWindow *window = new TeamMonitorWindow(); window->Enable(); // we don't even quit when the window is closed... app.Run(); }