nicole mazzuca 0523b5eb57
[vcpkg formatting] Fix format regex (#12369)
* [vcpkg formatting] correct the header regexes

* format
2020-07-11 21:07:51 -07:00

22 lines
465 B
C++

#pragma once
#include <vcpkg/base/files.h>
#include <string>
#include <utility>
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();
}