nicole mazzuca 6a41626eaf
[vcpkg] Format the C++ in CI (#11655)
* [vcpkg] Format the C++ in the CI

* format the C++

* CR
2020-07-06 16:45:34 -07:00

22 lines
465 B
C++

#pragma once
#include <string>
#include <utility>
#include <vcpkg/base/files.h>
namespace vcpkg
{
struct VcpkgPaths;
struct ToolCache
{
virtual ~ToolCache() { }
virtual const fs::path& get_tool_path(const VcpkgPaths& paths, const std::string& tool) const = 0;
virtual const std::string& get_tool_version(const VcpkgPaths& paths, const std::string& tool) const = 0;
};
std::unique_ptr<ToolCache> get_tool_cache();
}