mirror of
https://github.com/obhq/obliteration.git
synced 2024-11-23 11:19:56 +00:00
12 lines
270 B
C++
12 lines
270 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
#include <filesystem>
|
|
#include <string>
|
|
|
|
// Do not throw. Return empty string is case of error.
|
|
std::string joinPath(const QString &base, const QString &name);
|
|
// v must be native format.
|
|
std::filesystem::path toPath(const QString &v);
|