Skip to content

Commit

Permalink
override
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Cornu committed Dec 15, 2024
1 parent 8e5be13 commit b2a14e9
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/nrncvode/netcon.h
Original file line number Diff line number Diff line change
Expand Up @@ -249,11 +249,10 @@ class WatchCondition: public ConditionEvent {
class STECondition: public WatchCondition {
public:
STECondition(Point_process*, double (*)(Point_process*) = NULL);
virtual ~STECondition() = default;
virtual void deliver(double, NetCvode*, NrnThread*);
virtual void pgvts_deliver(double t, NetCvode*);
virtual double value();
virtual NrnThread* thread();
void deliver(double, NetCvode*, NrnThread*) override;
void pgvts_deliver(double t, NetCvode*) override;
double value() override;
NrnThread* thread() override;

STETransition* stet_;
};
Expand Down

0 comments on commit b2a14e9

Please sign in to comment.