mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-13 07:35:41 +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;
|
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>
|
template <class LATorLON>
|
||||||
LATorLON CEarthAngle<LATorLON>::operator +(const CEarthAngle &latOrLon) const
|
LATorLON CEarthAngle<LATorLON>::operator +(const CEarthAngle &latOrLon) const
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -45,17 +45,6 @@ namespace BlackMisc
|
|||||||
//! Multiply operator *=
|
//! Multiply operator *=
|
||||||
CEarthAngle &operator *=(double multiply);
|
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 +
|
//! Plus operator +
|
||||||
LATorLON operator +(const CEarthAngle &latOrLon) const;
|
LATorLON operator +(const CEarthAngle &latOrLon) const;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user