mirror of
https://github.com/QuasarApp/QtDeployer.git
synced 2025-04-28 22:44:32 +00:00
32 lines
598 B
C++
Executable File
32 lines
598 B
C++
Executable File
#ifndef BASECLASS_H
|
|
#define BASECLASS_H
|
|
|
|
#include <QDebug>
|
|
#include <QDir>
|
|
#include <QDirIterator>
|
|
#include <QFile>
|
|
#include <QFileInfo>
|
|
#include <QObject>
|
|
#include <QProcess>
|
|
#include <QTextStream>
|
|
|
|
class BaseClass : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
protected:
|
|
static QString m_qtdir;
|
|
static QString m_outputdir;
|
|
static QString m_projectdir;
|
|
static QString m_executablepath;
|
|
|
|
QStringList findFilesInsideDir(const QString &name, const QString &dirpath);
|
|
|
|
bool getName(QString &name, const QString &url) const;
|
|
|
|
public:
|
|
explicit BaseClass(QObject *parent = nullptr);
|
|
};
|
|
|
|
#endif // BASECLASS_H
|