NEURON
nrn_export.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #if defined(_WIN32)
4 #define NRN_EXPORT __declspec(dllexport)
5 #else
6 #define NRN_EXPORT __attribute__((visibility("default")))
7 #endif