00001 00005 #ifndef _STATICANALOGSYNAPSE_H_ 00006 #define _STATICANALOGSYNAPSE_H_ 00007 00008 #include "analogsynapse.h" 00009 00011 class StaticAnalogSynapse : public AnalogSynapse { 00012 00013 DO_REGISTERING 00014 00015 public: 00016 StaticAnalogSynapse(void); 00017 00019 void reset(void); 00020 00022 int advance(void); 00023 00024 00025 private: 00026 00027 // The following must be included to be able to register this object 00028 00029 }; 00030 00031 #endif