xref: /haiku/src/apps/gradients/GradientsApp.cpp (revision 220d04022750f40f8bac8f01fa551211e28d04f2)
1 /*
2  * Copyright (c) 2008-2009, Haiku, Inc.
3  * Distributed under the terms of the MIT license.
4  *
5  * Authors:
6  *		Artur Wyszynski <harakash@gmail.com>
7  */
8 
9 
10 #include "GradientsApp.h"
11 
12 
13 #include "GradientsWindow.h"
14 
15 
16 GradientsApp::GradientsApp(void)
17 	: BApplication("application/x-vnd.Haiku-Gradients")
18 {
19 	GradientsWindow* window = new GradientsWindow();
20 	window->Show();
21 }
22 
23 
24 int
25 main()
26 {
27 	GradientsApp app;
28 	app.Run();
29 	return 0;
30 }
31