xref: /haiku/src/apps/gradients/GradientsApp.cpp (revision 98a9fe1571b22a0547c009e26791058abe00c9a9)
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 
GradientsApp(void)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
main()25 main()
26 {
27 	GradientsApp app;
28 	app.Run();
29 	return 0;
30 }
31