QtLingo 1
QtLingo is an Application to make Qt Computer Translations easier
qexample.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 "qexample.h"
22
23#include <QJsonObject>
24
25
29QJsonObject QExample::toJson() const
30{
31 QJsonObject object
32 {
33 {"description", description},
34 {"example", example},
35 };
36
37 return object;
38}
39
QString example
example
Definition: qexample.h:32
QJsonObject toJson() const
toJson
Definition: qexample.cpp:29
QString description
description
Definition: qexample.h:33