8 lines
123 B
C++
8 lines
123 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
class FsHelpers {
|
|
public:
|
|
static std::string normalisePath(const std::string& path);
|
|
};
|