mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-29 11:14:33 +00:00
28 lines
470 B
C
28 lines
470 B
C
|
#ifndef METAFILEMANAGER_H
|
||
|
#define METAFILEMANAGER_H
|
||
|
|
||
|
#include <QString>
|
||
|
|
||
|
class FileManager;
|
||
|
|
||
|
class MetaFileManager
|
||
|
{
|
||
|
|
||
|
private:
|
||
|
bool createRunScriptWindows(const QString &target);
|
||
|
bool createRunScriptLinux(const QString &target);
|
||
|
|
||
|
|
||
|
bool createRunScript(const QString &target);
|
||
|
bool createQConf();
|
||
|
|
||
|
FileManager* _fileManager = nullptr;
|
||
|
|
||
|
public:
|
||
|
MetaFileManager(FileManager* manager);
|
||
|
|
||
|
void createRunMetaFiles();
|
||
|
};
|
||
|
|
||
|
#endif // METAFILEMANAGER_H
|