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
18class PictureTestApp : public BApplication
19{
20	typedef BApplication Inherited;
21
22public:
23	PictureTestApp();
24
25	void ReadyToRun();
26
27private:
28};
29
30#endif
31