Drop unnecessary dllimport/dllexport statements in QtIOCompressor.

This commit is contained in:
Felix Geyer 2013-03-29 16:31:26 +01:00
parent 5550d7af0d
commit 98372f9df8

View File

@ -49,24 +49,8 @@
#include <QtCore/QIODevice>
#if defined(Q_OS_WIN)
# if !defined(QT_QTIOCOMPRESSOR_EXPORT) && !defined(QT_QTIOCOMPRESSOR_IMPORT)
# define QT_QTIOCOMPRESSOR_EXPORT
# elif defined(QT_QTIOCOMPRESSOR_IMPORT)
# if defined(QT_QTIOCOMPRESSOR_EXPORT)
# undef QT_QTIOCOMPRESSOR_EXPORT
# endif
# define QT_QTIOCOMPRESSOR_EXPORT __declspec(dllimport)
# elif defined(QT_QTIOCOMPRESSOR_EXPORT)
# undef QT_QTIOCOMPRESSOR_EXPORT
# define QT_QTIOCOMPRESSOR_EXPORT __declspec(dllexport)
# endif
#else
# define QT_QTIOCOMPRESSOR_EXPORT
#endif
class QtIOCompressorPrivate;
class QT_QTIOCOMPRESSOR_EXPORT QtIOCompressor : public QIODevice
class QtIOCompressor : public QIODevice
{
Q_OBJECT
public: