1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
// SPDX-FileCopyrightText: 2017 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#pragma once
#include <QDir>
#include "dtkcore_global.h"
DCORE_BEGIN_NAMESPACE
class LIBDTKCORESHARED_EXPORT DPathBuf
{
public:
DPathBuf();
DPathBuf(const QString &path);
DPathBuf operator/(const QString &p) const
{
return DPathBuf(m_path + "/" + p);
}
DPathBuf &operator/=(const QString &p)
{
return join(p);
}
DPathBuf operator/(const char *p) const
{
return operator /(QString(p));
}
DPathBuf &operator/=(const char *p)
{
return operator /=(QString(p));
}
DPathBuf &join(const QString &p)
{
m_path += "/" + p;
m_path = QDir(m_path).absolutePath();
return *this;
}
QString toString() const
{
return QDir::toNativeSeparators(m_path);
}
private:
QString m_path;
};
DCORE_END_NAMESPACE
|