src/simulator/event-impl.h
changeset 25 9b3bb088c560
parent 16 99e833adbb46
child 52 72a52d59ee9f
--- a/src/simulator/event-impl.h	Sat Sep 02 19:50:19 2006 +0200
+++ b/src/simulator/event-impl.h	Sun Sep 03 12:24:04 2006 +0200
@@ -30,18 +30,15 @@
 	EventImpl ();
 	virtual ~EventImpl () = 0;
 	void invoke (void);
-	void set_tag (void *tag);
-	void *get_tag (void) const;
 	void cancel (void);
-	bool is_running (void);
+	void set_internal_iterator (void *iterator);
+	void *get_internal_iterator (void) const;
 protected:
 	virtual void notify (void) = 0;
 private:
 	friend class Event;
-	void *m_id;
-	uint32_t m_count;
-	uint32_t m_cancel : 1;
-	uint32_t m_running : 1;
+	void *m_internal_iterator;
+	bool m_cancel;
 };
 
 }; // namespace ns3