Warning, file /education/cantor/src/backends/octave/octavesettingswidget.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2020-2022 by Alexander Semke (alexander.semke@web.de)
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef OCTAVESETTINGSWIDGET_H
0008 #define OCTAVESETTINGSWIDGET_H
0009 
0010 #include "ui_settings.h"
0011 #include "../backendsettingswidget.h"
0012 
0013 class OctaveSettingsWidget : public BackendSettingsWidget, public Ui::OctaveSettingsBase
0014 {
0015   Q_OBJECT
0016 
0017 public:
0018     explicit OctaveSettingsWidget(QWidget* parent = nullptr, const QString& id = QString());
0019 
0020 private Q_SLOTS:
0021     void integratePlotsChanged(bool);
0022 };
0023 
0024 #endif /* OCTAVESETTINGSWIDGET_H */