SEScalarAmountPerVolume.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 AmountPerVolumeUnit : public CCompoundUnit
8{
9public:
10 AmountPerVolumeUnit(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 AmountPerVolumeUnit& GetCompoundUnit(const std::string& unit);
19
27};
28
29class CDM_DECL SEScalarAmountPerVolume : public SEScalarQuantity<AmountPerVolumeUnit>
30{
31public:
34};
Definition: SEScalarAmountPerVolume.h:8
static AmountPerVolumeUnit ct_Per_uL
Definition: SEScalarAmountPerVolume.h:26
static AmountPerVolumeUnit mol_Per_L
Definition: SEScalarAmountPerVolume.h:20
static AmountPerVolumeUnit mol_Per_mL
Definition: SEScalarAmountPerVolume.h:21
static AmountPerVolumeUnit mmol_Per_mL
Definition: SEScalarAmountPerVolume.h:23
static AmountPerVolumeUnit pmol_Per_L
Definition: SEScalarAmountPerVolume.h:24
static AmountPerVolumeUnit ct_Per_L
Definition: SEScalarAmountPerVolume.h:25
virtual ~AmountPerVolumeUnit()
Definition: SEScalarAmountPerVolume.h:11
AmountPerVolumeUnit(const std::string &u)
Definition: SEScalarAmountPerVolume.h:10
static AmountPerVolumeUnit mmol_Per_L
Definition: SEScalarAmountPerVolume.h:22
AmountPerVolumeUnit(const AmountPerVolumeUnit &)=delete
Definition: CompoundUnit.h:40
CCompoundUnit & operator=(const CCompoundUnit &rhs)
Definition: CompoundUnit.h:132
Definition: SEScalarAmountPerVolume.h:30
SEScalarAmountPerVolume()
Definition: SEScalarAmountPerVolume.h:32
virtual ~SEScalarAmountPerVolume()
Definition: SEScalarAmountPerVolume.h:33
Definition: SEScalar.h:209

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.