vfs: check userland buffers before reading them.
[haiku.git] / src / apps / gradients / GradientsApp.cpp
blob8d4f875a6663c86d26f42e94986ad4113daa9107
1 /*
2 * Copyright (c) 2008-2009, Haiku, Inc.
3 * Distributed under the terms of the MIT license.
5 * Authors:
6 * Artur Wyszynski <harakash@gmail.com>
7 */
10 #include "GradientsApp.h"
13 #include "GradientsWindow.h"
16 GradientsApp::GradientsApp(void)
17 : BApplication("application/x-vnd.Haiku-Gradients")
19 GradientsWindow* window = new GradientsWindow();
20 window->Show();
24 int
25 main()
27 GradientsApp app;
28 app.Run();
29 return 0;