]> git.mxchange.org Git - simgear.git/blobdiff - simgear/timing/timestamp.hxx
Don't waste space with too huge stl containers.
[simgear.git] / simgear / timing / timestamp.hxx
index aa71a29667953dd598935f1684be1ab1ae97afd9..c14ab6f9f11ed7c6b07965180ee26d81c27b8231 100644 (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