-
Notifications
You must be signed in to change notification settings - Fork 1
/
libqron_stable.h
72 lines (65 loc) · 2.23 KB
/
libqron_stable.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* Copyright 2023 Gregoire Barbier and others.
* This file is part of libpumpkin, see <http://libpumpkin.g76r.eu/>.
* Libpumpkin is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Libpumpkin 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 Affero General Public License for more details.
* You should have received a copy of the GNU Affero General Public License
* along with libpumpkin. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBQRON_STABLE_H
#define LIBQRON_STABLE_H
// C
#include <sys/types.h>
#if defined __cplusplus
// C++
#include <random>
// Qt
#include <QDeadlineTimer>
#include <QFileSystemWatcher>
#include <QEvent>
#include <QTemporaryFile>
#include <QUdpSocket>
#include <QMetaType>
#include <QAbstractTableModel>
#include <QProcess>
#include <QTimer>
#include <QThread>
#include <QCoreApplication>
#include <QProcessEnvironment>
#include <QMimeData>
#include <QBuffer>
#include <QFileInfo>
#include <QDir>
// libp6core
#include "util/paramsprovidermerger.h"
#include "util/regexpparamsprovider.h"
#include "util/utf8stringlist.h"
#include "util/radixtree.h"
#include "util/containerutils.h"
#include "format/stringutils.h"
#include "format/timeformats.h"
#include "csv/csvfile.h"
#include "pf/pfnode.h"
#include "pf/pfdomhandler.h"
#include "log/log.h"
#include "log/filelogger.h"
#include "log/qterrorcodes.h"
#include "modelview/shareduiitemdocumentmanager.h"
#include "modelview/genericshareduiitem.h"
#include "modelview/templatedshareduiitemdata.h"
#include "modelview/shareduiitemlist.h"
#include "modelview/textmatrixmodel.h"
#include "thread/atomicvalue.h"
#include "thread/circularbuffer.h"
#include "thread/blockingtimer.h"
#include "io/readonlyresourcescache.h"
#include "auth/inmemoryauthenticator.h"
#include "auth/inmemoryusersdatabase.h"
#include "httpd/httprequest.h"
#endif // __cplusplus
#endif // LIBQRON_STABLE_H