Warning, file /education/cantor/src/backends/kalgebra/kalgebrabackend.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: 2009 Aleix Pol <aleixpol@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef KALGEBRA_BACKEND_H 0008 #define KALGEBRA_BACKEND_H 0009 0010 #include "backend.h" 0011 class KAlgebraBackend : public Cantor::Backend 0012 { 0013 Q_OBJECT 0014 public: 0015 explicit KAlgebraBackend( QObject* parent = nullptr, const QList<QVariant> args = QList<QVariant>()); 0016 ~KAlgebraBackend() override = default; 0017 0018 QString id() const override; 0019 Cantor::Session *createSession() override; 0020 Cantor::Backend::Capabilities capabilities() const override; 0021 0022 QWidget* settingsWidget(QWidget* parent) const override; 0023 KConfigSkeleton* config() const override; 0024 0025 QUrl helpUrl() const override; 0026 QString version() const override; 0027 bool requirementsFullfilled(QString* const reason) const override; 0028 }; 0029 0030 #endif /* _NULLBACKEND_H */