summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/LspCpp/LibLsp/lsp/AbsolutePath.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/LspCpp/LibLsp/lsp/AbsolutePath.h')
-rw-r--r--Build/source/utils/asymptote/LspCpp/LibLsp/lsp/AbsolutePath.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/Build/source/utils/asymptote/LspCpp/LibLsp/lsp/AbsolutePath.h b/Build/source/utils/asymptote/LspCpp/LibLsp/lsp/AbsolutePath.h
deleted file mode 100644
index ef1ee438603..00000000000
--- a/Build/source/utils/asymptote/LspCpp/LibLsp/lsp/AbsolutePath.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#pragma once
-
-#include <LibLsp/JsonRpc/serializer.h>
-#include <string>
-
-struct AbsolutePath {
- static AbsolutePath BuildDoNotUse(const std::string& path);
-
- // Try not to use this.
- AbsolutePath();
-
- // Provide implicit conversions to std::string for the time being.
- AbsolutePath(const std::string& path, bool validate = true);
- operator std::string() const;
-
- bool operator==(const AbsolutePath& rhs) const;
- bool operator!=(const AbsolutePath& rhs) const;
- bool operator<(const AbsolutePath& rhs) const;
- bool operator>(const AbsolutePath& rhs) const;
- std::string path;
- bool qualify = true;
-};
-
-
-void Reflect(Reader& visitor, AbsolutePath& value);
-void Reflect(Writer& visitor, AbsolutePath& value);
-