4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-04-28 10:44:33 +00:00

35 lines
717 B
C
Raw Permalink Normal View History

2019-09-23 16:46:57 +03:00
//#
//# Copyright (C) 2018-2019 QuasarApp.
//# Distributed under the lgplv3 software license, see the accompanying
//# Everyone is permitted to copy and distribute verbatim copies
//# of this license document, but changing it is not allowed.
//#
2019-09-15 17:38:47 +03:00
#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