added useless Time::Seconds method when doing testing for the removal of the Seconds class. Remove it.

This commit is contained in:
Mathieu Lacage
2007-02-02 19:14:16 +01:00
parent 99848bfcd9
commit 548b20f75a
2 changed files with 0 additions and 8 deletions

View File

@@ -330,8 +330,6 @@ public:
Time (TimeUnit<1> time);
Time (HighPrecision const& value);
static Time Seconds (double seconds);
/**
* \returns an approximation in seconds of the time stored in this
* instance.

View File

@@ -33,12 +33,6 @@ Time::Time (HighPrecision const& value)
: TimeUnit<1> (value)
{}
Time
Time::Seconds (double seconds)
{
return Seconds (seconds);
}
double
Time::GetSeconds (void) const
{