8#ifndef INCLUDED_ORCUS_ZIP_ARCHIVE_HPP
9#define INCLUDED_ORCUS_ZIP_ARCHIVE_HPP
20class zip_archive_stream;
21class zip_archive_impl;
23class ORCUS_PSR_DLLPUBLIC
zip_error :
public std::exception
31 virtual const char* what()
const throw();
36 zip_archive_impl* mp_impl;
97 bool read_file_entry(std::string_view entry_name, std::vector<unsigned char>& buf)
const;
Definition: zip_archive_stream.hpp:19
Definition: zip_archive.hpp:35
void dump_file_entry(std::string_view entry_name) const
std::string_view get_file_entry_name(std::size_t index) const
bool read_file_entry(std::string_view entry_name, std::vector< unsigned char > &buf) const
size_t get_file_entry_count() const
void dump_file_entry(size_t index) const
Definition: zip_archive.hpp:24