Allow specifying ROM type in file load dialog
[lsnes.git] / include / platform / wxwidgets / window-romload.hpp
blobcfc448526f7292cd5ccac505a6f0cba5e7b40767
1 #ifndef _wxwidgets__window_romload__hpp__included__
2 #define _wxwidgets__window_romload__hpp__included__
4 #include <string>
5 #include <wx/wx.h>
7 class wxwindow_romload
9 public:
10 wxwindow_romload(const std::string& path);
11 bool show(wxWindow* parent);
12 std::string get_core() { return core; }
13 std::string get_type() { return type; }
14 std::string get_filename() { return filename; }
15 private:
16 std::string path;
17 std::string core;
18 std::string type;
19 std::string filename;
22 #endif