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 _PLOT2DASSISTANT_H
0007 #define _PLOT2DASSISTANT_H
0008 
0009 #include "assistant.h"
0010 
0011 class Plot2dAssistant : public Cantor::Assistant
0012 {
0013   Q_OBJECT
0014   public:
0015     Plot2dAssistant( QObject* parent, QList<QVariant> args );
0016     ~Plot2dAssistant() override = default;
0017 
0018     void initActions() override;
0019     QStringList run(QWidget* parentt) override;
0020 };
0021 
0022 #endif /* _PLOT2DASSISTANT_H */