1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/src/qqt.h

29 lines
527 B
C
Raw Normal View History

2016-12-29 16:49:18 +08:00
#ifndef QQTPUB_H
#define QQTPUB_H
2017-09-17 08:46:57 +08:00
#include <QtCore/qglobal.h>
#if defined(QQT_LIBRARY)
# define QQTSHARED_EXPORT Q_DECL_EXPORT
#else
# define QQTSHARED_EXPORT Q_DECL_IMPORT
#endif
2016-12-29 16:49:18 +08:00
#include "qqtgui.h"
2017-09-17 08:46:57 +08:00
#include "qqt-qt.h"
2017-08-13 18:27:13 +08:00
#if defined(__WIN__) || defined(__WIN64__)
#include "qqtwin.h"
2017-09-14 17:41:45 +08:00
#elif defined(__LINUX__) || defined(__LINUX64__)
2016-12-29 16:49:18 +08:00
#include "qqtlinux.h"
2017-09-14 17:41:45 +08:00
#else
#include "qqtdarwin.h"
2017-08-13 18:27:13 +08:00
#endif
2017-09-05 18:07:05 +08:00
#include "qqtcore.h"
#include "qqtsql.h"
#include "qqtnetwork.h"
#include "qqtwidgets.h"
2017-09-17 08:46:57 +08:00
#include "qqtframe.h"
2016-12-29 16:49:18 +08:00
#endif // QQTPUB_H