mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
88ad59bfb1
Also a simple StringBuilder to help him out.
24 lines
400 B
C++
24 lines
400 B
C++
#pragma once
|
|
|
|
#include "String.h"
|
|
|
|
namespace AK {
|
|
|
|
class FileSystemPath {
|
|
public:
|
|
FileSystemPath() { }
|
|
explicit FileSystemPath(const String&);
|
|
|
|
bool isValid() const { return m_isValid; }
|
|
String string() const { return m_string; }
|
|
|
|
private:
|
|
bool canonicalize(bool resolveSymbolicLinks = false);
|
|
|
|
String m_string;
|
|
bool m_isValid { false };
|
|
};
|
|
|
|
};
|
|
|
|
using AK::FileSystemPath;
|