-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathglobal.h
More file actions
28 lines (22 loc) · 707 Bytes
/
global.h
File metadata and controls
28 lines (22 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 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
#include "tagparser-definitions.h"
#include <c++utilities/application/global.h>
#ifdef TAG_PARSER_STATIC
#define TAG_PARSER_EXPORT
#define TAG_PARSER_IMPORT
#else
#define TAG_PARSER_EXPORT CPP_UTILITIES_GENERIC_LIB_EXPORT
#define TAG_PARSER_IMPORT CPP_UTILITIES_GENERIC_LIB_IMPORT
#endif
/*!
* \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.
*/
#endif // TAG_PARSER_GLOBAL