aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authornicole mazzuca <mazzucan@outlook.com>2020-08-19 21:12:55 -0700
committerGitHub <noreply@github.com>2020-08-19 21:12:55 -0700
commitdfa7dc4276cbb11aad483fc0b9324ae0cfa1e62d (patch)
tree94e765c5f2039c24f85ac239a839c30af5d02678 /toolsrc/include
parent2f9d4a178526ba83f8daa135e07b2c45510db8be (diff)
downloadvcpkg-dfa7dc4276cbb11aad483fc0b9324ae0cfa1e62d.tar.gz
vcpkg-dfa7dc4276cbb11aad483fc0b9324ae0cfa1e62d.zip
remove registries.h and fwd/registries.h... (#13017)
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg/fwd/registries.h6
-rw-r--r--toolsrc/include/vcpkg/registries.h32
2 files changed, 0 insertions, 38 deletions
diff --git a/toolsrc/include/vcpkg/fwd/registries.h b/toolsrc/include/vcpkg/fwd/registries.h
deleted file mode 100644
index 1091a81ad..000000000
--- a/toolsrc/include/vcpkg/fwd/registries.h
+++ /dev/null
@@ -1,6 +0,0 @@
-#pragma once
-
-namespace vcpkg
-{
- struct Registry;
-}
diff --git a/toolsrc/include/vcpkg/registries.h b/toolsrc/include/vcpkg/registries.h
deleted file mode 100644
index 17ea56119..000000000
--- a/toolsrc/include/vcpkg/registries.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#pragma once
-
-#include <vcpkg/base/files.h>
-#include <vcpkg/base/optional.h>
-#include <vcpkg/base/
-
-#include <vcpkg/fwd/registries.h>
-
-#include <memory>
-#include <string>
-#include <system_error>
-#include <vector>
-
-namespace vcpkg
-{
- struct RegistryImpl
- {
- virtual void update(std::error_code&) = 0;
- virtual Optional<fs::path> find_port(StringView name) const = 0;
-
- virtual ~RegistryImpl() = default;
- };
-
- struct Registry
- {
- std::string name;
- std::vector<std::string> packages;
-
- std::unique_ptr<RegistryImpl> underlying;
- };
-
-}