File indexing completed on 2024-04-21 03:51:04

0001 /*
0002     SPDX-FileCopyrightText: 2010 Frederik Gladhorn <gladhorn@kde.org>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #ifndef CONJUGATIONDATA_H
0007 #define CONJUGATIONDATA_H
0008 
0009 #include <QMetaType>
0010 #include <QString>
0011 #include <QStringList>
0012 
0013 #include <KEduVocConjugation>
0014 
0015 namespace Practice
0016 {
0017 struct ConjugationData {
0018     QString questionInfinitive;
0019     QString solutionInfinitive;
0020     QString tense;
0021     QStringList personalPronouns;
0022 };
0023 
0024 }
0025 
0026 Q_DECLARE_METATYPE(Practice::ConjugationData)
0027 
0028 #endif