| 28 | } |
| 29 | |
| 30 | Io::Io() : c2d::C2DIo() { |
| 31 | |
| 32 | // http io |
| 33 | browser = new Browser(); |
| 34 | browser->set_handle_gzip(true); |
| 35 | browser->set_handle_redirect(true); |
| 36 | browser->set_handle_ssl(false); |
| 37 | browser->fetch_forms(false); |
| 38 | |
| 39 | // ftp io |
| 40 | FtpInit(); |
| 41 | } |
| 42 | |
| 43 | std::vector<c2d::Io::File> Io::getDirList(const pplay::Io::DeviceType &type, const std::vector<std::string> &extensions, |
| 44 | const std::string &path, bool sort, bool showHidden) { |
nothing calls this directly
no test coverage detected