mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-15 18:15:52 +08:00
103 lines
3.7 KiB
C++
103 lines
3.7 KiB
C++
#ifndef jkqtmath_IMPORT_H
|
|
#define jkqtmath_IMPORT_H
|
|
|
|
/*
|
|
Copyright (c) 2008-2022 Jan W. Krieger (<jan@jkrieger.de>)
|
|
|
|
last modification: $LastChangedDate: 2015-04-02 13:55:22 +0200 (Do, 02 Apr 2015) $ (revision $Rev: 3902 $)
|
|
|
|
This software is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License (LGPL) as published by
|
|
the Free Software Foundation, either version 2.1 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program 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 (LGPL) for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License (LGPL)
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*! \def jkqtmath_LIB_EXPORT
|
|
\ingroup jkqtmath_libfacilities
|
|
|
|
This define allows to export functions and classes from the jkqtmath-library when building a dynamic/shared library.
|
|
Usage is as follows:
|
|
\code
|
|
#include "jkqtmath_imexport/jkqtmath_imexport.h"
|
|
|
|
class jkqtmath_LIB_EXPORT exportedClassName {
|
|
...
|
|
};
|
|
|
|
jkqtmath_LIB_EXPORT void exportedFunctionName();
|
|
\endcode
|
|
|
|
These macros append the appropriate \c Q_DECL_EXPORT and \c Q_DECL_IMPORT
|
|
to the function/class body and thus tell windows compilers to export these sysmbols from
|
|
the shared library, or import them from a shared library.
|
|
|
|
Note that these attributes are only necessary on windows systems!
|
|
|
|
These macros are controlled by two other macros:
|
|
- \c jkqtmath_LIB_IN_DLL declares that the application should link against a shared version of
|
|
JKQTMath, i.e. \c JKQTMathSharedLib_XYZ .
|
|
This needs to be defined while compiling the library and while compiling
|
|
any application linking against \c JKQTMathSharedLib_XYZ.
|
|
- \c jkqtmath_LIB_EXPORT_LIBRARY is only defined while compiling JKQTMath into \c JKQTMathSharedLib_XYZ
|
|
and ensures thet the symbols are exported. If it is not defined (e.g. while
|
|
compiling an application), the symbols are imported
|
|
.
|
|
|
|
*/
|
|
|
|
// necessary to add this define to the Doxygen autodoc!!!
|
|
#ifdef DOXYGEN
|
|
# define jkqtmath_LIB_IN_DLL
|
|
#endif
|
|
/*! \def jkqtmath_LIB_IN_DLL
|
|
\ingroup jkqtmath_libfacilities
|
|
\brief declares that the application should link against a shared version of
|
|
JKQTMath, i.e. \c JKQTMathSharedLib_XYZ .
|
|
This needs to be defined while compiling the library and while compiling
|
|
any application linking against \c JKQTMathSharedLib_XYZ.
|
|
*/
|
|
|
|
// necessary to add this define to the Doxygen autodoc!!!
|
|
#ifdef DOXYGEN
|
|
# define jkqtmath_LIB_EXPORT_LIBRARY
|
|
#endif
|
|
/*! \def jkqtmath_LIB_EXPORT_LIBRARY
|
|
\ingroup jkqtmath_libfacilities
|
|
\brief is only defined while compiling JKQTMath into \c JKQTMathSharedLib_XYZ
|
|
and ensures thet the symbols are exported. If it is not defined (e.g. while
|
|
compiling an application), the symbols are imported
|
|
*/
|
|
|
|
#include <QtCore/QtGlobal>
|
|
# ifdef jkqtmath_LIB_IN_DLL
|
|
# ifndef jkqtmath_LIB_EXPORT
|
|
# ifdef jkqtmath_LIB_EXPORT_LIBRARY
|
|
/* We are building this library */
|
|
# define jkqtmath_LIB_EXPORT Q_DECL_EXPORT
|
|
# else
|
|
/* We are using this library */
|
|
# define jkqtmath_LIB_EXPORT Q_DECL_IMPORT
|
|
# endif
|
|
# endif
|
|
# else
|
|
# ifndef jkqtmath_LIB_EXPORT
|
|
# define jkqtmath_LIB_EXPORT
|
|
# endif
|
|
# endif
|
|
|
|
|
|
|
|
#endif // jkqtmath_IMPORT_H
|
|
|