File indexing completed on 2024-05-19 11:21:19

0001 /*
0002     SPDX-License-Identifier: GPL-2.0-or-later
0003     SPDX-FileCopyrightText: 2009 Alexander Rieder <alexanderrieder@gmail.com>
0004 */
0005 
0006 #ifndef _RUNSCRIPTASSISTANT_H
0007 #define _RUNSCRIPTASSISTANT_H
0008 
0009 #include "assistant.h"
0010 
0011 class RunScriptAssistant : public Cantor::Assistant
0012 {
0013   public:
0014     RunScriptAssistant( QObject* parent, QList<QVariant> args );
0015     ~RunScriptAssistant() override = default;
0016 
0017     void initActions() override;
0018     
0019     QStringList run(QWidget* parentt) override;
0020     
0021 };
0022 
0023 #endif /* _RUNSCRIPTASSISTANT_H */