Robert Schumacher e17de99599 [vcpkg] Re-layout all files using new organization scheme.
All filenames and directories are lowercase. Use dots for namespace separation.
2017-10-13 18:37:41 -07:00

30 lines
564 B
C++

#pragma once
#include <string>
namespace vcpkg
{
struct VersionT
{
VersionT();
VersionT(const std::string& value);
std::string to_string() const;
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;
};
}