xref: /haiku/src/add-ons/print/transports/lpr/LprSetupDlg.h (revision 95c9effd68127df2dce202d5e254a7c86560010a)
1 // Sun, 18 Jun 2000
2 // Y.Takagi
3 
4 #ifndef __LprSetupDlg_H
5 #define __LprSetupDlg_H
6 
7 #include <Window.h>
8 
9 #include "DialogWindow.h"
10 
11 class BDirectory;
12 class LprSetupView;
13 
14 
15 class LprSetupDlg : public DialogWindow {
16 public:
17 					LprSetupDlg(BDirectory *);
18 					~LprSetupDlg() {}
19 	virtual void	MessageReceived(BMessage *message);
20 
21 private:
22 	LprSetupView*	fSetupView;
23 };
24 
25 #endif	// __LprSetupDlg_H
26