QtLingo 1
QtLingo is an Application to make Qt Computer Translations easier
qoption.cpp
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#include "qoption.h"
22
23#include <QJsonObject>
24#include <QJsonArray>
25
26
30QJsonObject QOption::toJson() const
31{
32 QJsonObject object
33 {
34 {"gender", gender},
35 {"translations", QJsonArray::fromStringList(translations)},
36 {"word", word},
37 };
38 return object;
39}
40
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