NEURON
cabvars.h
Go to the documentation of this file.
1 /*
2 # =============================================================================
3 # Copyright (c) 2016 - 2021 Blue Brain Project/EPFL
4 #
5 # See top-level LICENSE file for details.
6 # =============================================================================.
7 */
8 
9 namespace coreneuron {
10 
11 extern void capacitance_reg(void), _passive_reg(void),
12 #if EXTRACELLULAR
13  extracell_reg_(void),
14 #endif
15  _stim_reg(void), _hh_reg(void), _netstim_reg(void), _expsyn_reg(void), _exp2syn_reg(void),
16  _svclmp_reg(void);
17 
18 static void (*mechanism[])(void) = {/* type will start at 3 */
21 #if EXTRACELLULAR
22  /* extracellular requires special handling and must be type 5 */
24 #endif
25  nullptr};
26 
27 } // namespace coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
void capacitance_reg(void)
Definition: capac.cpp:28
void _hh_reg(void)
static const char * mechanism[]
Definition: capac.cpp:19
void _expsyn_reg(void)
void _netstim_reg(void)
void _svclmp_reg(void)
void _stim_reg(void)
void _exp2syn_reg(void)
void _passive_reg(void)
void extracell_reg_()