refs #413 Removed some operators of CEarthAngle which were not used, not needed, and not working.

This commit is contained in:
Mathew Sutcliffe
2015-05-02 18:33:50 +01:00
parent bfbfab5304
commit 6fd3c78d33
2 changed files with 0 additions and 35 deletions

View File

@@ -38,30 +38,6 @@ namespace BlackMisc
return *this;
}
template <class LATorLON>
bool CEarthAngle<LATorLON>::operator >(const CEarthAngle &latOrLon) const
{
return this->PhysicalQuantities::CAngle::operator >(latOrLon);
}
template <class LATorLON>
bool CEarthAngle<LATorLON>::operator <(const CEarthAngle &latOrLon) const
{
return this->PhysicalQuantities::CAngle::operator >(latOrLon);
}
template <class LATorLON>
bool CEarthAngle<LATorLON>::operator <=(const CEarthAngle &latOrLon) const
{
return this->PhysicalQuantities::CAngle::operator <=(latOrLon);
}
template <class LATorLON>
bool CEarthAngle<LATorLON>::operator >=(const CEarthAngle &latOrLon) const
{
return this->PhysicalQuantities::CAngle::operator >=(latOrLon);
}
template <class LATorLON>
LATorLON CEarthAngle<LATorLON>::operator +(const CEarthAngle &latOrLon) const
{

View File

@@ -45,17 +45,6 @@ namespace BlackMisc
//! Multiply operator *=
CEarthAngle &operator *=(double multiply);
//! Greater operator >
bool operator >(const CEarthAngle &latOrLon) const;
//! Less operator <
bool operator <(const CEarthAngle &latOrLon) const;
//! Less equal operator <=
bool operator <=(const CEarthAngle &latOrLon) const;
//! Greater equal operator >=
bool operator >=(const CEarthAngle &latOrLon) const;
//! Plus operator +
LATorLON operator +(const CEarthAngle &latOrLon) const;