summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/LspCpp/include/LibLsp/lsp/Directory.h
blob: 93f2c0807d3f831e2c2fe44b0b1ae939037790a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
};