blob: 8b4b2a8e0aef19315fed7162b35a79cb81067eac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Copyright (C) 2009 Lorenzo Bettini <http://www.lorenzobettini.it>
* See COPYING file that comes with this distribution
*/
#ifndef FINDREPLACE_GLOBAL_H
#define FINDREPLACE_GLOBAL_H
#include <QtCore/qglobal.h>
#ifndef FINDREPLACE_NOLIB
#if defined(FINDREPLACE_LIBRARY)
# define FINDREPLACESHARED_EXPORT Q_DECL_EXPORT
#else
# define FINDREPLACESHARED_EXPORT Q_DECL_IMPORT
#endif
#else
#define FINDREPLACESHARED_EXPORT
#endif
#endif // FINDREPLACE_GLOBAL_H
|