mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 21:56:43 +08:00
55 lines
1.2 KiB
C++
55 lines
1.2 KiB
C++
/* Copyright (C) 2013 VATSIM Community
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "avheading.h"
|
|
|
|
using BlackMisc::PhysicalQuantities::CAngle;
|
|
using BlackMisc::PhysicalQuantities::CAngleUnit;
|
|
|
|
namespace BlackMisc
|
|
{
|
|
namespace Aviation
|
|
{
|
|
|
|
/*
|
|
* Own implementation for streaming
|
|
*/
|
|
QString CHeading::stringForConverter() const
|
|
{
|
|
QString s = CAngle::stringForConverter();
|
|
return s.append(this->m_magnetic ? " magnetic" : " true");
|
|
}
|
|
|
|
/*
|
|
* Assigment
|
|
*/
|
|
CHeading& CHeading::operator =(const CHeading &otherHeading)
|
|
{
|
|
// Check for self-assignment!
|
|
if (this == &otherHeading) return *this;
|
|
CAngle::operator = (otherHeading);
|
|
this->m_magnetic = otherHeading.m_magnetic;
|
|
return (*this);
|
|
}
|
|
|
|
/*
|
|
* Equal?
|
|
*/
|
|
bool CHeading::operator ==(const CHeading &otherHeading)
|
|
{
|
|
return otherHeading.m_magnetic == this->m_magnetic && CAngle::operator ==(otherHeading);
|
|
}
|
|
|
|
/*
|
|
* Unequal?
|
|
*/
|
|
bool CHeading::operator !=(const CHeading &otherHeading)
|
|
{
|
|
return !((*this) == otherHeading);
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace
|