xref: /haiku/src/apps/launchbox/main.cpp (revision 25648ff02029112c6152fbbc43949cc81b195adf)
1 /*
2  * Copyright 2006, Haiku.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Stephan Aßmus <superstippi@gmx.de>
7  */
8 
9 
10 #include <stdio.h>
11 
12 #include "App.h"
13 
14 int
main(int argc,char ** argv)15 main(int argc, char** argv)
16 {
17 	new App();
18 	be_app->Run();
19 	delete be_app;
20 	return 0;
21 }
22