aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/VersionT.h
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-10-13 18:37:41 -0700
committerRobert Schumacher <roschuma@microsoft.com>2017-10-13 18:37:41 -0700
commite17de99599a2f114faab1bb4821fbaad4d266c95 (patch)
tree397fec8a85af3ef002c125ce013eceb60d27116d /toolsrc/include/VersionT.h
parent1fb5313a881fe0fcfd90dff5255045c8367ee00b (diff)
downloadvcpkg-e17de99599a2f114faab1bb4821fbaad4d266c95.tar.gz
vcpkg-e17de99599a2f114faab1bb4821fbaad4d266c95.zip
[vcpkg] Re-layout all files using new organization scheme.
All filenames and directories are lowercase. Use dots for namespace separation.
Diffstat (limited to 'toolsrc/include/VersionT.h')
-rw-r--r--toolsrc/include/VersionT.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/toolsrc/include/VersionT.h b/toolsrc/include/VersionT.h
deleted file mode 100644
index 67efd8da3..000000000
--- a/toolsrc/include/VersionT.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#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;
- };
-}