QtLingo 1
QtLingo is an Application to make Qt Computer Translations easier
qoption.h
Go to the documentation of this file.
1/*
2 * Copyright © 2018-2021 Hennadii Chernyshchyk <genaloner@gmail.com>
3 *
4 * This file is part of QOnlineTranslator.
5 *
6 * QOnlineTranslator is free library; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a get of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
21#ifndef QOPTION_H
22#define QOPTION_H
23
24#include <QJsonObject>
25#include <QStringList>
26
27
31struct QOption
32{
33 QString word;
34 QString gender;
35 QStringList translations;
36 QJsonObject toJson() const;
37};
38#endif // QOPTION_H
39
QOption.
Definition: qoption.h:32
QJsonObject toJson() const
toJson
Definition: qoption.cpp:30
QStringList translations
translations
Definition: qoption.h:35
QString word
word
Definition: qoption.h:33
QString gender
gender
Definition: qoption.h:34