xref: /haiku/src/tests/kits/interface/flatten_picture/PictureTestApp.h (revision b55a57da7173b9af0432bd3e148d03f06161d036)
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 #ifndef _PICTURE_TEST_APP_H
10 #define _PICTURE_TEST_APP_H
11 
12 #include <Application.h>
13 #include <Message.h>
14 #include <Rect.h>
15 
16 #define APPLICATION_SIGNATURE	"application/x-vnd.haiku-picturetest"
17 
18 class PictureTestApp : public BApplication
19 {
20 	typedef BApplication Inherited;
21 
22 public:
23 	PictureTestApp();
24 
25 	void ReadyToRun();
26 
27 private:
28 };
29 
30 #endif
31