browser-window.hpp 271 B

1234567891011121314
  1. #if defined(Hiro_BrowserWindow)
  2. namespace hiro {
  3. struct pBrowserWindow {
  4. static auto directory(BrowserWindow::State& state) -> string;
  5. static auto open(BrowserWindow::State& state) -> string;
  6. static auto save(BrowserWindow::State& state) -> string;
  7. };
  8. }
  9. #endif