/* * 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 "TMWindow.h" #include #include #if DEBUG FILE *KeyboardInputDevice::sLogFile = NULL; #endif int main() { BApplication app("application/x-vnd.tmwindow-test"); TMWindow *window = new TMWindow(); window->Enable(); // we don't even quit when the window is closed... app.Run(); }