summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/LspCpp/include/LibLsp/lsp/Directory.h
blob: 77b6cbb3e79f72b3d216294df0dfaf292dc4c092 (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;
};