summaryrefslogtreecommitdiff
path: root/src/sim/eventq.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/sim/eventq.hh')
-rw-r--r--src/sim/eventq.hh7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/sim/eventq.hh b/src/sim/eventq.hh
index cee48665d..1b00088a3 100644
--- a/src/sim/eventq.hh
+++ b/src/sim/eventq.hh
@@ -370,10 +370,11 @@ class EventQueue : public Serializable
void insert(Event *event);
void remove(Event *event);
+ EventQueue(const EventQueue &);
+ const EventQueue &operator=(const EventQueue &);
+
public:
- EventQueue(const std::string &n)
- : objName(n), head(NULL)
- {}
+ EventQueue(const std::string &n);
virtual const std::string name() const { return objName; }