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
11class BDirectory;
12class LprSetupView;
13
14
15class LprSetupDlg : public DialogWindow {
16public:
17					LprSetupDlg(BDirectory *);
18					~LprSetupDlg() {}
19	virtual void	MessageReceived(BMessage *message);
20
21private:
22	LprSetupView*	fSetupView;
23};
24
25#endif	// __LprSetupDlg_H
26