src/core/system-wall-clock-ms.h
changeset 150 663120712cd9
parent 131 f4fb87e77034
child 2834 1aab57845b07
--- a/src/core/system-wall-clock-ms.h	Wed Nov 01 13:00:34 2006 +0100
+++ b/src/core/system-wall-clock-ms.h	Wed Nov 01 13:11:30 2006 +0100
@@ -1,4 +1,4 @@
-/* -*- Mode:NS3; -*- */
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
 /*
  * Copyright (c) 2005 INRIA
  * All rights reserved.
@@ -29,23 +29,23 @@
  */
 class SystemWallClockMs {
 public:
-    SystemWallClockMs ();
-    ~SystemWallClockMs ();
+  SystemWallClockMs ();
+  ~SystemWallClockMs ();
 
-    /**
-     * Start a measure.
-     */
-    void Start (void);
-    /**
-     * \returns the measured elapsed wall clock time since 
-     *          ns3::SystemWallClockMs::start was invoked.
-     *
-     * It is possible to start a new measurement with ns3::SystemWallClockMs::start
-     * after this method returns.
-     */
-    unsigned long long End (void);
+  /**
+   * Start a measure.
+   */
+  void Start (void);
+  /**
+   * \returns the measured elapsed wall clock time since 
+   *          ns3::SystemWallClockMs::start was invoked.
+   *
+   * It is possible to start a new measurement with ns3::SystemWallClockMs::start
+   * after this method returns.
+   */
+  unsigned long long End (void);
 private:
-    class SystemWallClockMsPrivate *m_priv;
+  class SystemWallClockMsPrivate *m_priv;
 };
 
 }; // namespace ns3