Alexander Karatarakis 2d0a76370e clang-tidy fixes
2017-12-22 16:52:11 -08:00

31 lines
579 B
C++

#pragma once
#include <string>
namespace vcpkg
{
struct VersionT
{
VersionT();
VersionT(std::string&& value);
const std::string& to_string() const;
private:
std::string value;
};
bool operator==(const VersionT& left, const VersionT& right);
bool operator!=(const VersionT& left, const VersionT& right);
struct VersionDiff
{
VersionT left;
VersionT right;
VersionDiff();
VersionDiff(const VersionT& left, const VersionT& right);
std::string to_string() const;
};
}