1 // File Description
2 /// \file PbbamInternalConfig.h
3 /// \brief Defines internal macros for symbol visibility
4 //
5 // Author: Derek Barnett
6 
7 #ifndef PBBAMINTERNALCONFIG_H
8 #define PBBAMINTERNALCONFIG_H
9 
10 #if defined(WIN32)
11 #define PBBAM_EXPORT __declspec(dllexport)
12 #else
13 #define PBBAM_EXPORT __attribute__((visibility("default")))
14 #endif
15 
16 #include "pbbam/Config.h"
17 
18 #endif  // PBBAMINTERNALCONFIG_H
19