tagparser/global.h

29 lines
707 B
C
Raw Permalink Normal View History

2016-08-29 15:43:05 +02:00
// Created via CMake from template global.h.in
// WARNING! Any changes to this file will be overwritten by the next CMake run!
#ifndef TAG_PARSER_GLOBAL
#define TAG_PARSER_GLOBAL
2024-02-27 01:57:17 +01:00
#include "tagparser-definitions.h"
2016-08-29 15:43:05 +02:00
#include <c++utilities/application/global.h>
#ifdef TAG_PARSER_STATIC
2017-05-01 03:19:44 +02:00
#define TAG_PARSER_EXPORT
#define TAG_PARSER_IMPORT
2016-08-29 15:43:05 +02:00
#else
2019-06-12 20:40:45 +02:00
#define TAG_PARSER_EXPORT CPP_UTILITIES_GENERIC_LIB_EXPORT
#define TAG_PARSER_IMPORT CPP_UTILITIES_GENERIC_LIB_IMPORT
2016-08-29 15:43:05 +02:00
#endif
2016-11-08 20:01:28 +01:00
/*!
* \def TAG_PARSER_EXPORT
* \brief Marks the symbol to be exported by the tagparser library.
*/
/*!
* \def TAG_PARSER_IMPORT
* \brief Marks the symbol to be imported from the tagparser library.
*/
2016-08-29 15:43:05 +02:00
#endif // TAG_PARSER_GLOBAL