xref: /haiku/src/apps/launchbox/main.cpp (revision 5ac9b506412b11afb993bb52d161efe7666958a5)
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
15 main(int argc, char** argv)
16 {
17 	new App();
18 	be_app->Run();
19 	delete be_app;
20 	return 0;
21 }
22