Warning, file /education/parley/src/practice/examplesentencebackendmode.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 Frederik Gladhorn <gladhorn@kde.org> 0003 SPDX-License-Identifier: GPL-2.0-or-later 0004 */ 0005 0006 #ifndef EXAMPLESENTENCEBACKENDMODE_H 0007 #define EXAMPLESENTENCEBACKENDMODE_H 0008 0009 #include "writtenbackendmode.h" 0010 0011 namespace Practice 0012 { 0013 class ExampleSentenceBackendMode : public WrittenBackendMode 0014 { 0015 Q_OBJECT 0016 public: 0017 ExampleSentenceBackendMode(Practice::AbstractFrontend *frontend, QObject *parent, Practice::SessionManagerBase *sessionManager, KEduVocDocument *doc); 0018 0019 bool setTestEntry(TestEntry *current) override; 0020 }; 0021 0022 } 0023 0024 #endif