simgear/timing/timestamp.hxx: Remove reimplemented default
implementations
* @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
usec = u;
}
-inline SGTimeStamp::~SGTimeStamp() {
-}
-
-inline SGTimeStamp& SGTimeStamp::operator = (const SGTimeStamp& t)
-{
- seconds = t.seconds;
- usec = t.usec;
- return *this;
-}
-
-
#endif // _TIMESTAMP_HXX