refs #345 Style and doxygen.

This commit is contained in:
Mathew Sutcliffe
2014-10-28 19:46:52 +00:00
parent 8f5315b846
commit 798b198d4e
78 changed files with 268 additions and 531 deletions

View File

@@ -25,10 +25,9 @@ namespace BlackMisc
*/
class CAdfSystem : public CModulator<CAdfSystem>
{
public:
//! Default constructor
CAdfSystem() : CModulator() {}
CAdfSystem() = default;
//! Constructor
CAdfSystem(const QString &name, const PhysicalQuantities::CFrequency &activeFrequency, const PhysicalQuantities::CFrequency &standbyFrequency = CModulator::FrequencyNotSet()):
@@ -88,11 +87,10 @@ namespace BlackMisc
this->isValidFrequency(this->getFrequencyActive()) &&
this->isValidFrequency(this->getFrequencyStandby());
}
};
} // namespace
} // namespace
}
}
Q_DECLARE_METATYPE(BlackMisc::Aviation::CAdfSystem)