2019-06-22 20:21:32 +08:00
|
|
|
#ifndef JKQTMATHTEXT_IMPORT_H
|
|
|
|
#define JKQTMATHTEXT_IMPORT_H
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2022-06-08 21:38:26 +08:00
|
|
|
Copyright (c) 2008-2022 Jan W. Krieger (<jan@jkrieger.de>)
|
2019-06-22 20:21:32 +08:00
|
|
|
|
|
|
|
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 JKQTMATHTEXT_LIB_EXPORT
|
2022-06-20 18:17:32 +08:00
|
|
|
\ingroup jkqtmathtext_tools
|
2019-06-22 20:21:32 +08:00
|
|
|
|
|
|
|
This define allows to export functions and classes from the jkqtcommon-library when building a dynamic/shared library.
|
|
|
|
Usage is as follows:
|
|
|
|
\code
|
|
|
|
#include "jkqtmathtext/jkqtmathtext_imexport.h"
|
|
|
|
|
|
|
|
class JKQTMATHTEXT_LIB_EXPORT exportedClassName {
|
|
|
|
...
|
|
|
|
};
|
|
|
|
|
|
|
|
JKQTMATHTEXT_LIB_EXPORT void exportedFunctionName();
|
|
|
|
\endcode
|
|
|
|
|
2022-04-19 04:00:41 +08:00
|
|
|
These macros append the appropriate \c Q_DECL_EXPORT and \c Q_DECL_IMPORT
|
2019-06-22 20:21:32 +08:00
|
|
|
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 JKQTMATHTEXT_LIB_IN_DLL declares that the application should link against a shared version of
|
|
|
|
JKQTMathText, i.e. \c JKQTMathTextSharedLib_XYZ .
|
|
|
|
This needs to be defined while compiling the library and while compiling
|
|
|
|
any application linking against \c JKQTMathTextSharedLib_XYZ.
|
|
|
|
- \c JKQTMATHTEXT_LIB_EXPORT_LIBRARY is only defined while compiling JKQTMathText into \c JKQTMathTextSharedLib_XYZ
|
|
|
|
and ensures thet the symbols are exported. If it is not defined (e.g. while
|
|
|
|
compiling an application), the symbols are imported
|
|
|
|
.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*! \def JKQTMATHTEXT_LIB_IN_DLL
|
2022-06-20 18:17:32 +08:00
|
|
|
\ingroup jkqtmathtext_tools
|
2019-06-22 20:21:32 +08:00
|
|
|
\brief declares that the application should link against a shared version of
|
|
|
|
JKQTMathText, i.e. \c JKQTMathTextSharedLib_XYZ .
|
|
|
|
This needs to be defined while compiling the library and while compiling
|
|
|
|
any application linking against \c JKQTMathTextSharedLib_XYZ.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*! \def JKQTMATHTEXT_LIB_EXPORT_LIBRARY
|
2022-06-20 18:17:32 +08:00
|
|
|
\ingroup jkqtmathtext_tools
|
2019-06-22 20:21:32 +08:00
|
|
|
\brief is only defined while compiling JKQTMathText into \c JKQTMathTextSharedLib_XYZ
|
|
|
|
and ensures thet the symbols are exported. If it is not defined (e.g. while
|
|
|
|
compiling an application), the symbols are imported
|
|
|
|
*/
|
|
|
|
|
2022-04-19 04:00:41 +08:00
|
|
|
#include <QtCore/QtGlobal>
|
|
|
|
|
2019-06-22 20:21:32 +08:00
|
|
|
# ifndef __WINDOWS__
|
|
|
|
# if defined(WIN32) || defined(WIN64) || defined(_MSC_VER) || defined(_WIN32)
|
|
|
|
# define __WINDOWS__
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
|
|
|
|
#ifdef __WINDOWS__
|
|
|
|
# ifdef JKQTMATHTEXT_LIB_IN_DLL
|
|
|
|
# ifndef JKQTMATHTEXT_LIB_EXPORT
|
|
|
|
# ifdef JKQTMATHTEXT_LIB_EXPORT_LIBRARY
|
|
|
|
/* We are building this library */
|
2022-04-19 04:00:41 +08:00
|
|
|
# define JKQTMATHTEXT_LIB_EXPORT Q_DECL_EXPORT
|
2019-06-22 20:21:32 +08:00
|
|
|
# else
|
|
|
|
/* We are using this library */
|
2022-04-19 04:00:41 +08:00
|
|
|
# define JKQTMATHTEXT_LIB_EXPORT Q_DECL_IMPORT
|
2019-06-22 20:21:32 +08:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# else
|
|
|
|
# ifndef JKQTMATHTEXT_LIB_EXPORT
|
|
|
|
# define JKQTMATHTEXT_LIB_EXPORT
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define JKQTMATHTEXT_LIB_EXPORT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // JKQTMATHTEXT_IMPORT_H
|
|
|
|
|