#ifndef SIBS_ZLIB_HPP #define SIBS_ZLIB_HPP #include "Result.hpp" namespace sibs { class Archive { public: // Note: renames root directory in archive to @destination static Result extract(const char *source, const char *destination); }; } #endif //SIBS_ZLIB_HPP