summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/sim/sim_events.hh16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/sim/sim_events.hh b/src/sim/sim_events.hh
index 8fb04408a..6343071dc 100644
--- a/src/sim/sim_events.hh
+++ b/src/sim/sim_events.hh
@@ -98,22 +98,6 @@ class LocalSimLoopExitEvent : public Event
const std::string &section);
};
-class CountedDrainEvent : public Event
-{
- private:
- // Count of how many objects have not yet drained
- int count;
-
- public:
- CountedDrainEvent();
-
- void process() override;
-
- void setCount(int _count) { count = _count; }
-
- int getCount() const { return count; }
-};
-
//
// Event class to terminate simulation after 'n' related events have
// occurred using a shared counter: used to terminate when *all*