xref: /haiku/src/tests/kits/interface/bprintjob/PrintTestWindow.hpp (revision 2b76973fa2401f7a5edf68e6470f3d3210cbcff3)
1 #ifndef PRINTTESTWINDOW_HPP
2 #define PRINTTESTWINDOW_HPP
3 
4 class PrintTestWindow;
5 
6 #include <Window.h>
7 
8 class PrintTestWindow : public BWindow
9 {
10 	typedef BWindow Inherited;
11 public:
12 	PrintTestWindow();
13 	bool QuitRequested();
14 private:
15 	void BuildGUI();
16 };
17 
18 #endif
19