// // Created by martial.simon on 2/25/25. // #pragma once #include "path.hh" class WindowsPath : public Path { public: WindowsPath(char drive); std::string to_string() const override; Path& join(const std::string& tail, bool is_file = false) override; };