CQtDeployer/Deploy/metafilemanager.h
2019-09-23 16:46:57 +03:00

35 lines
717 B
C++

//#
//# 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.
//#
#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