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

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.