QtDataSync  4.2.0
A simple offline-first synchronisation framework, to synchronize data of Qt applications between devices
qtdatasync_global.h
1 #ifndef QTDATASYNC_GLOBAL_H
2 #define QTDATASYNC_GLOBAL_H
3 
4 #include <QtCore/qglobal.h>
5 #include <QtCore/qstring.h>
6 
7 #if defined(QT_BUILD_DATASYNC_LIB)
8 # define Q_DATASYNC_EXPORT Q_DECL_EXPORT
9 #else
10 # define Q_DATASYNC_EXPORT Q_DECL_IMPORT
11 #endif
12 
13 #ifdef DOXYGEN_RUN
14 #define QT_DATASYNC_REVISION_2
15 #else
16 #define QT_DATASYNC_REVISION_2 Q_REVISION(2)
17 #endif
18 
20 namespace QtDataSync {
22 extern Q_DATASYNC_EXPORT const QString DefaultSetup;
23 }
24 
25 #endif // QTDATASYNC_GLOBAL_H
The primary namespace of the QtDataSync library.
Q_DATASYNC_EXPORT const QString DefaultSetup
The default setup name.