Go to the documentation of this file.
33 #ifndef __H__UG__symbol_import_export__
34 #define __H__UG__symbol_import_export__
47 #define EXPORT_IMPL __attribute__ ((dllexport))
48 #define IMPORT_IMPL __attribute__ ((dllimport))
50 #define EXPORT_IMPL __declspec(dllexport)
51 #define IMPORT_IMPL __declspec(dllimport)
59 #ifdef BUILDING_DYNAMIC_LIBRARY
60 #define UG_API EXPORT_IMPL
62 #ifdef IMPORTING_DYNAMIC_LIBRARY
63 #define UG_API IMPORT_IMPL