diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2018-06-19 17:21:34 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2018-06-19 23:07:31 -0700 |
| commit | dbae3bfe566c4c2d949ca6b2f84c6867f15e46ac (patch) | |
| tree | df5c84ce88609c21e481cb761674351c228f9446 /toolsrc/include | |
| parent | 3e76baa163880f59fc344dcff58fd48e526b4a39 (diff) | |
| download | vcpkg-dbae3bfe566c4c2d949ca6b2f84c6867f15e46ac.tar.gz vcpkg-dbae3bfe566c4c2d949ca6b2f84c6867f15e46ac.zip | |
Introduce archives.h/cpp
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg/base/archives.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/toolsrc/include/vcpkg/base/archives.h b/toolsrc/include/vcpkg/base/archives.h new file mode 100644 index 000000000..cfb9f84c0 --- /dev/null +++ b/toolsrc/include/vcpkg/base/archives.h @@ -0,0 +1,9 @@ +#pragma once
+
+#include <vcpkg/base/files.h>
+#include <vcpkg/vcpkgpaths.h>
+
+namespace vcpkg::Archives
+{
+ void extract_archive(const VcpkgPaths& paths, const fs::path& archive, const fs::path& to_path);
+}
|
