SEScalarMassPerAreaTime.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 MassPerAreaTimeUnit : public CCompoundUnit
8{
9public:
10 MassPerAreaTimeUnit(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 MassPerAreaTimeUnit& GetCompoundUnit(const std::string& unit);
19
21};
22
23class CDM_DECL SEScalarMassPerAreaTime : public SEScalarQuantity<MassPerAreaTimeUnit>
24{
25public:
28};
29
Definition: CompoundUnit.h:40
CCompoundUnit & operator=(const CCompoundUnit &rhs)
Definition: CompoundUnit.h:132
Definition: SEScalarMassPerAreaTime.h:8
virtual ~MassPerAreaTimeUnit()
Definition: SEScalarMassPerAreaTime.h:11
static const MassPerAreaTimeUnit g_Per_cm2_s
Definition: SEScalarMassPerAreaTime.h:20
MassPerAreaTimeUnit(const std::string &u)
Definition: SEScalarMassPerAreaTime.h:10
MassPerAreaTimeUnit(const MassPerAreaTimeUnit &)=delete
Definition: SEScalarMassPerAreaTime.h:24
SEScalarMassPerAreaTime()
Definition: SEScalarMassPerAreaTime.h:26
virtual ~SEScalarMassPerAreaTime()
Definition: SEScalarMassPerAreaTime.h:27
Definition: SEScalar.h:209

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.