AnimatLab  2
Test
IntegrateFireSimIncludes.h
1 #ifndef __REAL_NET_INCLUDES_H__
2 #define __REAL_NET_INCLUDES_H__
3 
4 #ifdef WIN32
5  #define ADV_NEURAL_PORT __declspec( dllexport )
6 #else
7  #define ADV_NEURAL_PORT
8 #endif
9 
10 #include "AnimatSim.h"
11 #include "IntegrateFireSimConstants.h"
12 
13 //Simulation Objects
14 namespace IntegrateFireSim
15 {
16  //class ClassFactory;
18  class Neuron;
19 
20  namespace Synapses
21  {
22  class Connexion;
23  class ElectricalSynapse;
26  }
27 
28  namespace Utilities
29  {
30  class DoubleList;
31  }
32 }
33 
34 using namespace IntegrateFireSim;
35 using namespace IntegrateFireSim::Synapses;
36 using namespace IntegrateFireSim::Utilities;
37 
38 #include "DoubleList.h"
39 #include "NeuralUtils.h"
40 
41 #endif // __REAL_NET_INCLUDES_H__
Integrate and fire neural module.
Utility classes for the integrate and fire neuron model.
Definition: DoubleList.cpp:11
Integrate and fire neuron model.
Declares the double list class.
Contains all of the classes to implement a basic integrate and fire neural model. ...
Synapse classes for the integrate and fire neural model.
Definition: Connexion.cpp:20