AnimatLab  2
Test
FiringRateSimIncludes.h
1 #ifndef __FAST_NET_INCLUDES_H__
2 #define __FAST_NET_INCLUDES_H__
3 
4 #ifdef WIN32
5  #define FAST_NET_PORT __declspec( dllexport )
6 #else
7  #define FAST_NET_PORT
8 #endif
9 
10 #include "AnimatSim.h"
11 #include "FiringRateSimConstants.h"
12 
13 //Simulation Objects
14 namespace FiringRateSim
15 {
16  class ClassFactory;
17  class FiringRateModule;
18 
19  namespace Neurons
20  {
21  class MotorNeuron;
22  class Neuron;
23  class PacemakerNeuron;
24  class RandomNeuron;
25  class SensoryNeuron;
26  class TonicNeuron;
27  }
28 
29  namespace Synapses
30  {
31  class GatedSynapse;
32  class ModulatedSynapse;
33  class Synapse;
34  }
35 }
36 
37 using namespace FiringRateSim;
38 using namespace FiringRateSim::Neurons;
39 using namespace FiringRateSim::Synapses;
40 
41 #include "NeuralUtils.h"
42 
43 #endif // __FAST_NET_INCLUDES_H__
Firing rate neural module.
Random firing rate neuron.
Definition: RandomNeuron.h:24
Gated firing rate synapse.
Definition: GatedSynapse.h:25
Modulated firing rate synapse.
Firing Rate Neuron model.
Firing rate neural module class factory.
Contains all of the synapse classes for the firing rate neural model.
Contains the neuron classes for the firing rate neuron model.
Contains the classes for a firing rate neural model.
Firing rate synapse model.
Definition: Synapse.h:29
Tonic firing rate neuron.
Definition: TonicNeuron.h:21