xref: /haiku/src/apps/icon-o-matic/main.cpp (revision 1acbe440b8dd798953bec31d18ee589aa3f71b73)
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 #include "IconEditorApp.h"
10 
11 int
12 main(int argc, char** argv)
13 {
14 	IconEditorApp* app = new IconEditorApp();
15 	app->Run();
16 
17 	delete app;
18 
19 	return 0;
20 }
21