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