xref: /haiku/src/tests/add-ons/input_server/TeamMonitorTest.cpp (revision 239222b2369c39dc52df52b0a7cdd6cc0a91bc92)
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 "KeyboardInputDevice.h"
10 #include "TMWindow.h"
11 
12 #include <stdio.h>
13 #include <stdlib.h>
14 
15 #if DEBUG
16 FILE *KeyboardInputDevice::sLogFile = NULL;
17 #endif
18 
19 
20 int
21 main()
22 {
23 	BApplication app("application/x-vnd.tmwindow-test");
24 	TMWindow *window = new TMWindow();
25 	window->Enable();
26 
27 	// we don't even quit when the window is closed...
28 	app.Run();
29 }
30