QEverCloud  3.0.0
Unofficial Evernote Cloud API for Qt
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
export.h
Go to the documentation of this file.
1 
9 #ifndef QEVERCLOUD_EXPORT_H
10 #define QEVERCLOUD_EXPORT_H
11 
12 #include <QtCore/QtGlobal>
13 
14 #if defined(_MSC_VER)
15 #if defined(QEVERCLOUD_SHARED_LIBRARY)
16 # define QEVERCLOUD_EXPORT Q_DECL_EXPORT
17 #elif defined(QEVERCLOUD_STATIC_LIBRARY)
18 # define QEVERCLOUD_EXPORT
19 #else
20 # define QEVERCLOUD_EXPORT Q_DECL_IMPORT
21 #endif
22 #else
23 # define QEVERCLOUD_EXPORT
24 #endif
25 
26 #endif // QEVERCLOUD_EXPORT_H