Modified Files:
simgear/timing/timestamp.hxx: Remove reimplemented default implementations
This commit is contained in:
@@ -71,14 +71,10 @@ public:
|
||||
* @param m initial microseconds value
|
||||
*/
|
||||
SGTimeStamp( const long s, const long m );
|
||||
~SGTimeStamp();
|
||||
|
||||
/** Update stored time to current time (seconds and microseconds) */
|
||||
void stamp();
|
||||
|
||||
/** Compare two time stamps for equality */
|
||||
SGTimeStamp& operator = ( const SGTimeStamp& t );
|
||||
|
||||
/**
|
||||
* Increment the saved time by the specified number of microseconds
|
||||
* @param t time stamp
|
||||
@@ -113,17 +109,6 @@ inline SGTimeStamp::SGTimeStamp( const long s, const long u ) {
|
||||
usec = u;
|
||||
}
|
||||
|
||||
inline SGTimeStamp::~SGTimeStamp() {
|
||||
}
|
||||
|
||||
inline SGTimeStamp& SGTimeStamp::operator = (const SGTimeStamp& t)
|
||||
{
|
||||
seconds = t.seconds;
|
||||
usec = t.usec;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
#endif // _TIMESTAMP_HXX
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user