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