 |
Verovio
Source code documentation
|
8 #ifndef __VRV_FILEREADER_H__
9 #define __VRV_FILEREADER_H__
51 bool Load(
const std::string &filename);
56 bool LoadBytes(
const std::vector<unsigned char> &bytes);
61 bool HasFile(
const std::string &filename);
80 miniz_cpp::zip_file *m_file;
86 #endif // __VRV_FILEREADER_H__
Forward declaration of the zip_file.hpp class.
Definition: filereader.h:18
This class is a reader for zip archives.
Definition: filereader.h:33
bool Load(const std::string &filename)
Load a file into memory.
bool HasFile(const std::string &filename)
Check if the archive contains the file.
std::list< std::string > GetFileList() const
Return a list of all files (including directories)
std::string ReadTextFile(const std::string &filename)
Read the text file.
void Reset()
Reset a previously loaded file.
bool LoadBytes(const std::vector< unsigned char > &bytes)
Load a vector into memory.