Moved PQs from blackcore to blackmisc, added header for namespace, mainpage.dox for Doxygen

This commit is contained in:
Klaus Basan
2013-03-22 16:07:53 +01:00
parent 969f0c879f
commit 525910c7a3
34 changed files with 237 additions and 112 deletions

View File

@@ -0,0 +1,38 @@
#include "blackmisc/pqpressure.h"
namespace BlackMisc {
/**
* Default constructor
*/
CPressure::CPressure() : CPhysicalQuantity(0, CPressureUnit::Pa(), CPressureUnit::Pa())
{
// void
}
/**
* Constructor
*/
CPressure::CPressure(const CPhysicalQuantity &pressure): CPhysicalQuantity(pressure)
{
//void
}
/**
* Constructor
*/
CPressure::CPressure(qint32 value, const CPressureUnit &unit) : CPhysicalQuantity(value, unit, CPressureUnit::Pa())
{
// void
}
/**
* Constructor
*/
CPressure::CPressure(double value, const CPressureUnit &unit) : CPhysicalQuantity(value, unit, CPressureUnit::Pa())
{
// void
}
} // namespace