#pragma once #include class XNCodeZip { public: XNCodeZip() = delete; ~XNCodeZip() = delete; static int Zip(const std::string &srcPath, const std::string &dstPath, std::string &errorMsg); static int Unzip(const std::string &srcPath, const std::string &dstPath, std::string &errorMsg); };