File indexing completed on 2024-10-13 09:20:22
0001 /* 0002 This program is free software; you can redistribute it and/or 0003 modify it under the terms of the GNU General Public License 0004 as published by the Free Software Foundation; either version 2 0005 of the License, or (at your option) any later version. 0006 0007 This program is distributed in the hope that it will be useful, 0008 but WITHOUT ANY WARRANTY; without even the implied warranty of 0009 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0010 GNU General Public License for more details. 0011 0012 You should have received a copy of the GNU General Public License 0013 along with this program; if not, write to the Free Software 0014 Foundation, Inc., 51 Franklin Street, Fifth Floor, 0015 Boston, MA 02110-1301, USA. 0016 0017 --- 0018 Copyright (C) 2020 Alexander Semke <alexander.semke@web.de> 0019 */ 0020 0021 #ifndef PYTHONSETTINGSWIDGET_H 0022 #define PYTHONSETTINGSWIDGET_H 0023 0024 #include "ui_settings.h" 0025 #include "../backendsettingswidget.h" 0026 0027 class PythonSettingsWidget : public BackendSettingsWidget, public Ui::PythonSettingsBase 0028 { 0029 Q_OBJECT 0030 0031 public: 0032 explicit PythonSettingsWidget(QWidget* parent = nullptr, const QString& id = QString()); 0033 }; 0034 0035 #endif /* _PYTHONSETTINGSWIDGET_H */