2010-07-23 07:31:53 +00:00
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
|
2010-07-25 18:06:41 +00:00
|
|
|
#ifndef FINDREPLACE_NOLIB
|
2010-07-23 07:31:53 +00:00
|
|
|
#if defined(FINDREPLACE_LIBRARY)
|
|
|
|
# define FINDREPLACESHARED_EXPORT Q_DECL_EXPORT
|
|
|
|
#else
|
|
|
|
# define FINDREPLACESHARED_EXPORT Q_DECL_IMPORT
|
|
|
|
#endif
|
2010-07-25 18:06:41 +00:00
|
|
|
#else
|
|
|
|
#define FINDREPLACESHARED_EXPORT
|
|
|
|
#endif
|
2010-07-23 07:31:53 +00:00
|
|
|
|
|
|
|
#endif // FINDREPLACE_GLOBAL_H
|