mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-20 04:25:42 +08:00
style fixes: mostly just things that make my eyes bleed :)
This commit is contained in:
@@ -38,16 +38,17 @@ public:
|
||||
CMass(double value, const CMassUnit &unit) : CPhysicalQuantity(value, unit, CMassUnit::kg()) {}
|
||||
|
||||
/*!
|
||||
* \brief Copy constructor
|
||||
* \param mass
|
||||
* \brief Copy constructor from base type
|
||||
* \param base
|
||||
*/
|
||||
CMass(const CPhysicalQuantity &mass) : CPhysicalQuantity(mass) {}
|
||||
CMass(const CPhysicalQuantity &base) : CPhysicalQuantity(base) {}
|
||||
|
||||
/*!
|
||||
* \brief Virtual destructor
|
||||
*/
|
||||
virtual ~CMass() {}
|
||||
};
|
||||
|
||||
} // namespace
|
||||
} // namespace
|
||||
|
||||
|
||||
Reference in New Issue
Block a user