diff options
Diffstat (limited to 'graphs/cpp/path/unix_path.hh')
| -rw-r--r-- | graphs/cpp/path/unix_path.hh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/graphs/cpp/path/unix_path.hh b/graphs/cpp/path/unix_path.hh new file mode 100644 index 0000000..22976ed --- /dev/null +++ b/graphs/cpp/path/unix_path.hh @@ -0,0 +1,13 @@ +// +// Created by martial.simon on 2/25/25. +// + +#pragma once +#include "path.hh" + +class UnixPath : public Path +{ +public: + UnixPath(); + std::string to_string() const override; +}; |
