src/core/system-wall-clock-ms.h
changeset 111 ad64f88919b5
parent 110 9ac6d63bfe33
child 122 6b8f1eda5c57
equal deleted inserted replaced
110:9ac6d63bfe33 111:ad64f88919b5
    30 class SystemWallClockMs {
    30 class SystemWallClockMs {
    31 public:
    31 public:
    32     SystemWallClockMs ();
    32     SystemWallClockMs ();
    33     ~SystemWallClockMs ();
    33     ~SystemWallClockMs ();
    34 
    34 
    35 	/**
    35     /**
    36 	 * Start a measure.
    36      * Start a measure.
    37 	 */
    37      */
    38     void start (void);
    38     void start (void);
    39 	/**
    39     /**
    40 	 * \returns the measured elapsed wall clock time since 
    40      * \returns the measured elapsed wall clock time since 
    41 	 *          ns3::SystemWallClockMs::start was invoked.
    41      *          ns3::SystemWallClockMs::start was invoked.
    42 	 *
    42      *
    43 	 * It is possible to start a new measurement with ns3::SystemWallClockMs::start
    43      * It is possible to start a new measurement with ns3::SystemWallClockMs::start
    44 	 * after this method returns.
    44      * after this method returns.
    45 	 */
    45      */
    46     unsigned long long end (void);
    46     unsigned long long end (void);
    47 private:
    47 private:
    48     class SystemWallClockMsPrivate *m_priv;
    48     class SystemWallClockMsPrivate *m_priv;
    49 };
    49 };
    50 
    50