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
11int
12main(int argc, char** argv)
13{
14	IconEditorApp* app = new IconEditorApp();
15	app->Run();
16
17	delete app;
18
19	return 0;
20}
21