src/simulator/event-impl.cc
changeset 54 f860e6f94787
parent 53 ae406f4957d5
child 110 9ac6d63bfe33
--- a/src/simulator/event-impl.cc	Tue Sep 05 13:13:39 2006 +0200
+++ b/src/simulator/event-impl.cc	Tue Sep 05 13:18:11 2006 +0200
@@ -1,4 +1,4 @@
-/* -*-	Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
+/* -*-    Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
 /*
  * Copyright (c) 2005 INRIA
  * All rights reserved.
@@ -29,30 +29,30 @@
 {}
 
 EventImpl::EventImpl ()
-	: m_internalIterator (0),
-	  m_cancel (false)
+    : m_internalIterator (0),
+      m_cancel (false)
 {}
 void 
 EventImpl::invoke (void)
 {
-	if (!m_cancel) {
-		notify ();
-	}
+    if (!m_cancel) {
+        notify ();
+    }
 }
 void 
 EventImpl::setInternalIterator (void *tag)
 {
-	m_internalIterator = tag;
+    m_internalIterator = tag;
 }
 void *
 EventImpl::getInternalIterator (void) const
 {
-	return m_internalIterator;
+    return m_internalIterator;
 }
 void 
 EventImpl::cancel (void)
 {
-	m_cancel = true;
+    m_cancel = true;
 }
 
 }; // namespace ns3