+ const wxString& name = wxDirDialogNameStr)
+ : wxDialog(parent, wxID_ANY, title, pos, sz, style, name) {}
+ wxDirDialogBase() {}
+
+ virtual ~wxDirDialogBase() {}
+
+ virtual void SetMessage(const wxString& message) { m_message = message; }
+ virtual void SetPath(const wxString& path) { m_path = path; }
+ virtual void SetStyle(long style) { SetWindowStyle(style); }