forked from blue/squawk
22 lines
350 B
C++
22 lines
350 B
C++
#ifndef PATHCHECK_H
|
|
#define PATHCHECK_H
|
|
|
|
#include <QString>
|
|
#include <QStandardPaths>
|
|
#include <QSettings>
|
|
#include <QApplication>
|
|
#include <QDir>
|
|
#include <QFileInfo>
|
|
#include <QDebug>
|
|
|
|
namespace Utils {
|
|
|
|
QString downloadsPathCheck();
|
|
QString defaultDownloadsPath();
|
|
|
|
QString getCanonicalWritablePath(const QString& path);
|
|
|
|
}
|
|
|
|
#endif // PATHCHECK_H
|