SEScalarInversePressure.h
1/* Distributed under the Apache License, Version 2.0.
2 See accompanying NOTICE file for details.*/
3
4#pragma once
5#include "cdm/properties/SEScalar.h"
6
7class CDM_DECL InversePressureUnit : public CCompoundUnit
8{
9public:
10 InversePressureUnit(const std::string& u) : CCompoundUnit(u) {}
12
13 // Please use static units below
16
17 static bool IsValidUnit(const std::string& unit);
18 static const InversePressureUnit& GetCompoundUnit(const std::string& unit);
19
24};
25
26class CDM_DECL SEScalarInversePressure : public SEScalarQuantity<InversePressureUnit>
27{
28public:
31};
Definition: CompoundUnit.h:40
CCompoundUnit & operator=(const CCompoundUnit &rhs)
Definition: CompoundUnit.h:132
Definition: SEScalarInversePressure.h:8
static const InversePressureUnit Inverse_atm
Definition: SEScalarInversePressure.h:23
InversePressureUnit(const InversePressureUnit &)=delete
virtual ~InversePressureUnit()
Definition: SEScalarInversePressure.h:11
static const InversePressureUnit Inverse_mmHg
Definition: SEScalarInversePressure.h:21
InversePressureUnit(const std::string &u)
Definition: SEScalarInversePressure.h:10
static const InversePressureUnit Inverse_cmH2O
Definition: SEScalarInversePressure.h:22
static const InversePressureUnit Inverse_Pa
Definition: SEScalarInversePressure.h:20
Definition: SEScalarInversePressure.h:27
SEScalarInversePressure()
Definition: SEScalarInversePressure.h:29
virtual ~SEScalarInversePressure()
Definition: SEScalarInversePressure.h:30
Definition: SEScalar.h:209

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.