File: export.h

package info (click to toggle)
qevercloud 3.0.3%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 932 kB
  • ctags: 666
  • sloc: cpp: 4,690; yacc: 486; makefile: 42
file content (26 lines) | stat: -rw-r--r-- 641 bytes parent folder | download | duplicates (3)
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
/**
 * Original work: Copyright (c) 2014 Sergey Skoblikov
 * Modified work: Copyright (c) 2015-2016 Dmitry Ivanov
 *
 * This file is a part of QEverCloud project and is distributed under the terms of MIT license:
 * https://opensource.org/licenses/MIT
 */

#ifndef QEVERCLOUD_EXPORT_H
#define QEVERCLOUD_EXPORT_H

#include <QtCore/QtGlobal>

#if defined(_MSC_VER)
#if defined(QEVERCLOUD_SHARED_LIBRARY)
#  define QEVERCLOUD_EXPORT Q_DECL_EXPORT
#elif defined(QEVERCLOUD_STATIC_LIBRARY)
#  define QEVERCLOUD_EXPORT
#else
#  define QEVERCLOUD_EXPORT Q_DECL_IMPORT
#endif
#else
#  define QEVERCLOUD_EXPORT
#endif

#endif // QEVERCLOUD_EXPORT_H