Qt Cryptographic Architecture
qca_export.h
Go to the documentation of this file.
1/*
2 * qca_export.h - Qt Cryptographic Architecture
3 * Copyright (C) 2003-2005 Justin Karneges <justin@affinix.com>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301 USA
19 *
20 */
21
34#ifndef QCA_EXPORT_H
35#define QCA_EXPORT_H
36
37#include <QtGlobal>
38
39#ifdef Q_OS_WIN
40#ifndef QCA_STATIC
41#ifdef QCA_MAKEDLL
42#define QCA_EXPORT Q_DECL_EXPORT
43#else
44#define QCA_EXPORT Q_DECL_IMPORT
45#endif
46#endif
47#else
48#define QCA_EXPORT Q_DECL_EXPORT
49#endif
50#ifndef QCA_EXPORT
51#define QCA_EXPORT
52#endif
53
54#endif