10SN/A/*
20SN/A * Copyright 2007, Haiku. All rights reserved.
30SN/A * Distributed under the terms of the MIT License.
40SN/A *
51113Sjoehw * Authors:
61113Sjoehw *		Michael Pfeiffer
71113Sjoehw */
81113Sjoehw
91113Sjoehw#ifndef _PICTURE_TEST_APP_H
101113Sjoehw#define _PICTURE_TEST_APP_H
111113Sjoehw
121113Sjoehw#include <Application.h>
131113Sjoehw#include <Message.h>
141113Sjoehw#include <Rect.h>
151113Sjoehw
161113Sjoehw#define APPLICATION_SIGNATURE	"application/x-vnd.haiku-picturetest"
171113Sjoehw
181113Sjoehwclass PictureTestApp : public BApplication
191113Sjoehw{
201113Sjoehw	typedef BApplication Inherited;
211113Sjoehw
220SN/Apublic:
230SN/A	PictureTestApp();
240SN/A
250SN/A	void ReadyToRun();
260SN/A
270SN/Aprivate:
280SN/A};
290SN/A
300SN/A#endif
310SN/A