--- a/src/simulator/nstime.h Tue Nov 21 15:50:09 2006 +0100
+++ b/src/simulator/nstime.h Tue Nov 21 15:53:32 2006 +0100
@@ -307,22 +307,22 @@
* \returns an approximation in seconds of the time stored in this
* instance.
*/
- double ApproximateToSeconds (void) const;
+ double GetSeconds (void) const;
/**
* \returns an approximation in milliseconds of the time stored in this
* instance.
*/
- int32_t ApproximateToMilliSeconds (void) const;
+ int32_t GetMilliSeconds (void) const;
/**
* \returns an approximation in microseconds of the time stored in this
* instance.
*/
- int64_t ApproximateToMicroSeconds (void) const;
+ int64_t GetMicroSeconds (void) const;
/**
* \returns an approximation in nanoseconds of the time stored in this
* instance.
*/
- int64_t ApproximateToNanoSeconds (void) const;
+ int64_t GetNanoSeconds (void) const;
};
/**