Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

internalvoltageneuron.h

00001 #ifndef __INTERNALVOLTAGENEURON_H__
00002 #define __INTERNALVOLTAGENEURON_H__
00003 
00004 #include "csimclass.h"
00005 
00007 class InternalVoltageNeuron {
00008   
00009  protected:
00010   //InternalVoltageNeuron(void) { Vm = 0;};
00011   friend class GlutamateSynapse; // each synapse which accesses Vm needs to be a friend
00012 
00014   double Vm;
00015   //double getVm(void) { return Vm;};
00016 };
00017 
00018 #endif
00019