1#ifndef PRINTTESTVIEW_HPP
2#define PRINTTESTVIEW_HPP
3
4class PrintTestView;
5
6#include <View.h>
7
8class PrintTestView : public BView
9{
10	typedef BView Inherited;
11public:
12	PrintTestView(BRect frame);
13	void Draw(BRect updateRect);
14};
15
16#endif
17