13 #include <type_traits>
18 #ifndef nrn_spikebuf_size
19 #define nrn_spikebuf_size 0
57 void resolve(
void* dlsym_handle);
58 operator bool()
const {
77 #define cnrn_make_integral_constant_t(x) std::integral_constant<std::decay_t<decltype(x)>, x>
79 template <
typename function_ptr, function_ptr fptr>
82 template <
typename... Args>
84 #ifdef CORENEURON_ENABLE_MPI_DYNAMIC
87 return (*
reinterpret_cast<decltype(fptr)
>(m_fptr))(std::forward<Args>(args)...);
90 return (*fptr)(std::forward<Args>(args)...);