xref: /haiku/src/tests/kits/interface/flatten_picture/PictureTestApp.cpp (revision 5ac9b506412b11afb993bb52d161efe7666958a5)
1 /*
2  * Copyright 2007, Haiku. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Michael Pfeiffer
7  */
8 
9 #include "PictureTestApp.h"
10 #include "PictureTestWindow.h"
11 
12 int main()
13 {
14 	PictureTestApp app;
15 	app.Run();
16 	return 0;
17 }
18 
19 PictureTestApp::PictureTestApp()
20 	: Inherited(APPLICATION_SIGNATURE)
21 {
22 }
23 
24 void PictureTestApp::ReadyToRun()
25 {
26 	PictureTestWindow * window = new PictureTestWindow();
27 	window->Show();
28 }
29