File indexing completed on 2024-06-23 05:29:36

0001 /*
0002     SPDX-FileCopyrightText: 2020 Alexander Lohnau <alexander.lohnau@gmx.de>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "AbstractJob.h"
0010 
0011 class ScriptJob : public AbstractJob
0012 {
0013 public:
0014     void executeOperation(const QFileInfo &fileInfo, const QString &mimeType, bool install) override;
0015 
0016 private:
0017     QString formatScriptCommand(bool install, const QString &installerPath);
0018 };