diff --git a/simgear/timing/timestamp.hxx b/simgear/timing/timestamp.hxx index aa71a296..c14ab6f9 100644 --- a/simgear/timing/timestamp.hxx +++ b/simgear/timing/timestamp.hxx @@ -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