🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
Compress.hpp
浏览该文件的文档.
1
21
22#pragma once
23
25#include "AstUtil/StringView.hpp"
26
27AST_NAMESPACE_BEGIN
28
38AST_UTIL_API CompressorInterface* aCompressGetImpl(StringView source = {}, StringView target = {});
39
47AST_UTIL_API errc_t aCompress(StringView source, StringView target, StringView curdir = {});
48
49AST_NAMESPACE_END
CompressorInterface * aCompressGetImpl(StringView source, StringView target)
获取默认的压缩实现
定义 Compress.cpp:15
errc_t aCompress(StringView source, StringView target, StringView curdir)
压缩文件或目录到目标位置
定义 Compress.cpp:45