Modified Files:

simgear/timing/timestamp.hxx: Remove reimplemented default
	implementations
This commit is contained in:
frohlich
2006-10-31 05:33:48 +00:00
parent 27470fc504
commit 1a85dcd890

View File

@@ -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