aboutsummaryrefslogtreecommitdiff
path: root/include/Archive.hpp
blob: 6d6a55d47c98e96e9515878597630968abbc92b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef SIBS_ZLIB_HPP
#define SIBS_ZLIB_HPP

#include "Result.hpp"

namespace sibs
{
    class Archive
    {
    public:
        static Result<bool> extract(const char *source, const char *destination);
    };
}

#endif //SIBS_ZLIB_HPP