blob: 4bd9e2b85012bb301ed9140319c69f5db071ee6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//
// 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;
};
|