xref: /haiku/src/tests/kits/interface/menu/menuworld/main.cpp (revision 820dca4df6c7bf955c46e8f6521b9408f50b2900)
1 //--------------------------------------------------------------------
2 //
3 //	main.cpp
4 //
5 //	Written by: Owen Smith
6 //
7 //--------------------------------------------------------------------
8 
9 /*
10 	Copyright 1999, Be Incorporated.   All Rights Reserved.
11 	This file may be used under the terms of the Be Sample Code License.
12 */
13 
14 #include "MenuApp.h"
15 
16 int main(void)
17 {
18 	MenuApp app;
19 	app.Run();
20 	return B_NO_ERROR;
21 }
22 
23 
24