summaryrefslogtreecommitdiffstats
path: root/mocktracer/include/opentracing/mocktracer/symbols.h
blob: 9c63628256e0ff8b6dbe83bcb6ea5f6d34834697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef OPENTRACING_MOCK_TRACER_SYMBOLS_H
#define OPENTRACING_MOCK_TRACER_SYMBOLS_H

#include <opentracing/config.h>

#ifdef _MSC_VER
// Export if this is our own source, otherwise import:
#ifndef OPENTRACING_MOCK_TRACER_STATIC
#ifdef OPENTRACING_MOCK_TRACER_EXPORTS
#define OPENTRACING_MOCK_TRACER_API __declspec(dllexport)
#else
#define OPENTRACING_MOCK_TRACER_API __declspec(dllimport)
#endif
#endif
#endif  // _MSC_VER

#ifndef OPENTRACING_MOCK_TRACER_API
#define OPENTRACING_MOCK_TRACER_API
#endif

#endif  // OPENTRACING_SYMBOLS_H