2018-02-17 23:44:39 +08:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Nut project.
|
|
|
|
|
** https://github.com/HamedMasafi/Nut
|
|
|
|
|
**
|
|
|
|
|
** Nut is free software: you can redistribute it and/or modify
|
|
|
|
|
** it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
** (at your option) any later version.
|
|
|
|
|
**
|
|
|
|
|
** Nut is distributed in the hope that it will be useful,
|
|
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
** GNU Lesser General Public License for more details.
|
|
|
|
|
**
|
|
|
|
|
** You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
** along with Nut. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef PHRASE_H
|
|
|
|
|
#define PHRASE_H
|
|
|
|
|
|
2022-04-28 19:53:42 +08:00
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
|
|
|
|
|
2020-08-12 21:46:56 +08:00
|
|
|
#include <QtNut/nut_global.h>
|
2020-08-08 15:29:16 +08:00
|
|
|
#include <QtNut/conditionalphrase.h>
|
|
|
|
|
#include <QtNut/abstractfieldphrase.h>
|
|
|
|
|
#include <QtNut/fieldphrase.h>
|
|
|
|
|
#include <QtNut/phraselist.h>
|
|
|
|
|
#include <QtNut/assignmentphraselist.h>
|
|
|
|
|
#include <QtNut/phrasedatalist.h>
|
|
|
|
|
#include <QtNut/phrasedata.h>
|
|
|
|
|
#include <QtNut/assignmentphrase.h>
|
|
|
|
|
#include <QtNut/numericphrase.h>
|
2020-08-12 20:32:06 +08:00
|
|
|
#include <QtNut/fieldphrase_date.h>
|
|
|
|
|
#include <QtNut/fieldphrase_qstring.h>
|
|
|
|
|
#include <QtNut/fieldphrase_bool.h>
|
2018-02-17 23:44:39 +08:00
|
|
|
|
2022-04-28 19:53:42 +08:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2018-02-17 23:44:39 +08:00
|
|
|
#endif // PHRASE_H
|