mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
refs #413 Removed some operators of CEarthAngle which were not used, not needed, and not working.
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user