00001 #ifndef __SYNAPSETARGET_H__ 00002 #define __SYNAPSETARGET_H__ 00003 00004 #include "csimclass.h" 00005 00007 class SynapseTarget { 00008 00009 protected: 00010 friend class Synapse; 00011 // Needs to be reimplemented by each synaptic target 00012 // virtual uint32 getPostId(void)=0; 00013 00015 double summationPoint; 00016 00017 }; 00018 00019 #endif 00020