18 lines
413 B
C
18 lines
413 B
C
|
/*
|
||
|
* 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>
|
||
|
|
||
|
#if defined(FINDREPLACE_LIBRARY)
|
||
|
# define FINDREPLACESHARED_EXPORT Q_DECL_EXPORT
|
||
|
#else
|
||
|
# define FINDREPLACESHARED_EXPORT Q_DECL_IMPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // FINDREPLACE_GLOBAL_H
|