summaryrefslogtreecommitdiff
path: root/graphics/asymptote/LspCpp/LibLsp/lsp/Directory.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/LspCpp/LibLsp/lsp/Directory.h')
-rw-r--r--graphics/asymptote/LspCpp/LibLsp/lsp/Directory.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/graphics/asymptote/LspCpp/LibLsp/lsp/Directory.h b/graphics/asymptote/LspCpp/LibLsp/lsp/Directory.h
new file mode 100644
index 0000000000..93f2c0807d
--- /dev/null
+++ b/graphics/asymptote/LspCpp/LibLsp/lsp/Directory.h
@@ -0,0 +1,13 @@
+#pragma once
+#include <string>
+
+struct AbsolutePath;
+
+struct Directory {
+ explicit Directory(const AbsolutePath& path);
+
+ bool operator==(const Directory& rhs) const;
+ bool operator!=(const Directory& rhs) const;
+
+ std::string path;
+};