Reverted Bryan's changes to FrameStamp w.r.t std::tm structure which doesn't

compile under Win32 and IRIX.  Will need to find another solution.
This commit is contained in:
Robert Osfield
2001-10-16 21:47:47 +00:00
parent 557e2d8faa
commit 60d33f91f8
2 changed files with 4 additions and 4 deletions

View File

@@ -38,8 +38,8 @@ class SG_EXPORT FrameStamp : public Referenced
void setReferenceTime(double refTime) { _referenceTime = refTime; }
double getReferenceTime() const { return _referenceTime; }
void setCalanderTime(const std::tm& calanderTime);
void getCalanderTime(std::tm& calanderTime) const;
void setCalanderTime(const tm& calanderTime);
void getCalanderTime(tm& calanderTime) const;
protected: