mirror of
https://github.com/QuasarApp/QtDeployer.git
synced 2025-04-30 07:24:31 +00:00
30 lines
538 B
C
30 lines
538 B
C
|
#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);
|
||
|
|
||
|
public:
|
||
|
explicit BaseClass(QObject *parent = nullptr);
|
||
|
};
|
||
|
|
||
|
#endif // BASECLASS_H
|