1 /* 2 * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 7 #include <Application.h> 8 9 #include "TMWindow.h" 10 11 #include <stdio.h> 12 #include <stdlib.h> 13 14 15 int 16 main() 17 { 18 BApplication app("application/x-vnd.tmwindow-test"); 19 TMWindow *window = new TMWindow(); 20 window->Enable(); 21 22 // we don't even quit when the window is closed... 23 app.Run(); 24 } 25