1/*
2 Copyright (C) 2007 Christian Ehrlicher <ch.ehrlicher@gmx.de>
3
4Redistribution and use in source and binary forms, with or without
5modification, are permitted provided that the following conditions
6are met:
7
81. Redistributions of source code must retain the above copyright
9 notice, this list of conditions and the following disclaimer.
102. Redistributions in binary form must reproduce the above copyright
11 notice, this list of conditions and the following disclaimer in the
12 documentation and/or other materials provided with the distribution.
13
14THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
25*/
26
27#ifndef QIMAGEBLITZ_EXPORT_H
28#define QIMAGEBLITZ_EXPORT_H
29
30#include <QtCore/QtGlobal>
31
32#ifndef QIMAGEBLITZ_EXPORT
33# ifdef Q_OS_WIN
34# ifdef MAKE_QIMAGEBLITZ_LIB
35# define QIMAGEBLITZ_EXPORT Q_DECL_EXPORT
36# else
37# define QIMAGEBLITZ_EXPORT Q_DECL_IMPORT
38# endif
39# else
40# define QIMAGEBLITZ_EXPORT Q_DECL_EXPORT
41# endif
42#endif
43
44#endif // QIMAGEBLITZ_EXPORT_H
45