趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
zip_utils.h
Go to the documentation of this file.
1 #ifndef HRK_ZIP_UTILS_H
2 #define HRK_ZIP_UTILS_H
3 
9 #include <string>
10 #include <vector>
11 
12 
13 namespace hrk
14 {
15  class Zip;
16 
17  bool zip(const std::string& src, const std::string& zip_dest);
18  bool unzip(const std::string& zip_src, const std::string& dest);
19  bool load_zip_data(std::vector<unsigned char>& data,
20  hrk::Zip& zip, const std::string& data_name);
21 }
22 
23 #endif
Definition: Zip.h:18