vibe-core/source/vibe/core/path.d

26 lines
320 B
D
Raw Normal View History

module vibe.core.path;
struct Path {
nothrow: @safe:
private string m_path;
this(string p)
{
m_path = p;
}
string toString() const { return m_path; }
string toNativeString() const { return m_path; }
}
struct PathEntry {
nothrow: @safe:
private string m_name;
this(string name)
{
m_name = name;
}
}