xref: /haiku/src/tests/kits/interface/bprintjob/PrintTestView.hpp (revision 52a380120846174213ccce9c4aab0dda17c72083)
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