2005-01-01 02:44:28 +00:00
|
|
|
/*
|
|
|
|
* qca_export.h - Qt Cryptographic Architecture
|
|
|
|
* Copyright (C) 2003-2005 Justin Karneges <justin@affinix.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2007-01-02 05:10:11 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-01-01 02:44:28 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-03-26 03:27:54 +00:00
|
|
|
/**
|
|
|
|
\file qca_export.h
|
|
|
|
|
2006-03-26 03:48:42 +00:00
|
|
|
Preprocessor magic to allow export of library symbols.
|
2006-03-26 03:27:54 +00:00
|
|
|
|
2006-03-26 03:48:42 +00:00
|
|
|
This is strictly internal.
|
|
|
|
|
|
|
|
\note You should not include this header directly from an
|
2006-03-26 03:27:54 +00:00
|
|
|
application. You should just use <tt> \#include \<QtCrypto>
|
|
|
|
</tt> instead.
|
|
|
|
*/
|
|
|
|
|
2005-01-01 02:44:28 +00:00
|
|
|
#ifndef QCA_EXPORT_H
|
|
|
|
#define QCA_EXPORT_H
|
|
|
|
|
2005-02-27 01:12:26 +00:00
|
|
|
#include <QtGlobal>
|
2005-01-01 02:44:28 +00:00
|
|
|
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
# ifndef QCA_STATIC
|
|
|
|
# ifdef QCA_MAKEDLL
|
2007-02-15 19:17:56 +00:00
|
|
|
# define QCA_EXPORT Q_DECL_EXPORT
|
2005-01-01 02:44:28 +00:00
|
|
|
# else
|
2007-02-15 19:17:56 +00:00
|
|
|
# define QCA_EXPORT Q_DECL_IMPORT
|
2005-01-01 02:44:28 +00:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifndef QCA_EXPORT
|
|
|
|
# define QCA_EXPORT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|