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

@@ -34,20 +34,17 @@ namespace BlackMisc
public:
//! Default constructor
CLongitude() : CEarthAngle() {}
CLongitude() = default;
//! Constructor
explicit CLongitude(const BlackMisc::PhysicalQuantities::CAngle &angle) : CEarthAngle(angle) {}
//! Init by double value
CLongitude(double value, const BlackMisc::PhysicalQuantities::CAngleUnit &unit) : CEarthAngle(value, unit) {}
//! Virtual destructor
virtual ~CLongitude() {}
};
} // namespace
} // namespace
}
}
Q_DECLARE_METATYPE(BlackMisc::Geo::CLongitude)