xref: /haiku/src/tests/kits/interface/bprintjob/PrintTestView.hpp (revision 2600324b57fa31cdea1627d584d314f2a579c4a8)
1 #ifndef PRINTTESTVIEW_HPP
2 #define PRINTTESTVIEW_HPP
3 
4 class PrintTestView;
5 
6 #include <View.h>
7 
8 class PrintTestView : public BView
9 {
10 	typedef BView Inherited;
11 public:
12 	PrintTestView(BRect frame);
13 	void Draw(BRect updateRect);
14 };
15 
16 #endif
17