#include <dneuron.h>
Inheritance diagram for punnets_private::tsynapse_message< debug >:

Public Methods | |
| tsynapse_message (tneuron_base &isrc, tneuron_base &idest, real idelay, message_base *imess) | |
| tsynapse_message (tneuron_base &idest, real idelay, message_base *imess) | |
| virtual | ~tsynapse_message () |
| Destructor deletes the message. | |
| virtual void | setSrc (tneuron_base &isrc) |
| Specify the source neuron. | |
| virtual tneuron_base & | getSrc () const |
| Get the source neuron (pre-synaptic). | |
| virtual tneuron_base & | getDest () const |
| Get the destination neuron (post-synaptic). | |
| virtual void | activate (tscheduler &scheduler, ntime_t current_time) |
| The event handler delivers a message to the destination (post-synaptic) neuron. | |
Definition at line 317 of file dneuron.h.
|
||||||||||||||||||||||||
|
Construct a synapse with the specified source, destination, delay and a pointer to a message. The pointer to the message will be deleted at the destrucion of this synapse. Definition at line 327 of file dneuron.h. References punnets_common::real.
00328 : tsynapse_base(idelay), src(&isrc), dest(&idest), mess(imess) { } |
|
||||||||||||||||||||
|
Construct a synapse with the specified destination, delay and a pointer to a message. Source neuron will be specified after the construction via setSrc() method. The pointer to the message will be deleted at the destrucion of this synapse. Definition at line 332 of file dneuron.h. References punnets_common::real.
00333 : tsynapse_base(idelay), src(NULL), dest(&idest), mess(imess) { } |
1.2.18