13 lines
304 B
C
13 lines
304 B
C
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
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);
|
||
|
};
|