mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-04-02 10:42:14 -04:00
* GB: integrated SameBoy v0.12.1 by Lior Halphon * SFC: added HG51B169 (Cx4) math tables into bsnes binary
35 lines
728 B
C++
Executable file
35 lines
728 B
C++
Executable file
#if defined(Hiro_BrowserWindow)
|
|
|
|
auto BrowserWindow::directory() -> string {
|
|
return pBrowserWindow::directory(state);
|
|
}
|
|
|
|
auto BrowserWindow::open() -> string {
|
|
return pBrowserWindow::open(state);
|
|
}
|
|
|
|
auto BrowserWindow::save() -> string {
|
|
return pBrowserWindow::save(state);
|
|
}
|
|
|
|
auto BrowserWindow::setFilters(const vector<string>& filters) -> type& {
|
|
state.filters = filters;
|
|
return *this;
|
|
}
|
|
|
|
auto BrowserWindow::setParent(shared_pointer<mWindow> parent) -> type& {
|
|
state.parent = parent;
|
|
return *this;
|
|
}
|
|
|
|
auto BrowserWindow::setPath(const string& path) -> type& {
|
|
state.path = path;
|
|
return *this;
|
|
}
|
|
|
|
auto BrowserWindow::setTitle(const string& title) -> type& {
|
|
state.title = title;
|
|
return *this;
|
|
}
|
|
|
|
#endif
|