1 #ifndef FILEZILLA_INTERFACE_EXPORT_HEADER
2 #define FILEZILLA_INTERFACE_EXPORT_HEADER
3 
4 #include "dialogex.h"
5 
6 class CQueueView;
7 class CExportDialog final : protected wxDialogEx
8 {
9 public:
10 	CExportDialog(wxWindow* parent, CQueueView* pQueueView);
11 
12 	void Run();
13 
14 protected:
15 	wxWindow* const m_parent;
16 	const CQueueView* const m_pQueueView;
17 };
18 
19 #endif
20