aboutsummaryrefslogtreecommitdiff
path: root/include/Archive.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/Archive.hpp')
-rw-r--r--include/Archive.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/Archive.hpp b/include/Archive.hpp
new file mode 100644
index 0000000..6d6a55d
--- /dev/null
+++ b/include/Archive.hpp
@@ -0,0 +1,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