SEScalarLengthPerTime.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 
7 class CDM_DECL LengthPerTimeUnit : public CCompoundUnit
8 {
9 public:
10  LengthPerTimeUnit(const std::string& u) : CCompoundUnit(u) {}
11  virtual ~LengthPerTimeUnit() {}
12 
13  // Please use static units below
16 
17  static bool IsValidUnit(const std::string& unit);
18  static const LengthPerTimeUnit& GetCompoundUnit(const std::string& unit);
19 
20  static const LengthPerTimeUnit m_Per_s;
27 };
28 
29 class CDM_DECL SEScalarLengthPerTime : public SEScalarQuantity<LengthPerTimeUnit>
30 {
31 public:
34 };
Definition: CompoundUnit.h:40
CCompoundUnit & operator=(const CCompoundUnit &rhs)
Definition: CompoundUnit.h:132
Definition: SEScalarLengthPerTime.h:8
static const LengthPerTimeUnit cm_Per_s
Definition: SEScalarLengthPerTime.h:21
static const LengthPerTimeUnit km_Per_hr
Definition: SEScalarLengthPerTime.h:26
static const LengthPerTimeUnit ft_Per_s
Definition: SEScalarLengthPerTime.h:24
static const LengthPerTimeUnit ft_Per_min
Definition: SEScalarLengthPerTime.h:25
static const LengthPerTimeUnit m_Per_s
Definition: SEScalarLengthPerTime.h:20
LengthPerTimeUnit(const LengthPerTimeUnit &)=delete
virtual ~LengthPerTimeUnit()
Definition: SEScalarLengthPerTime.h:11
LengthPerTimeUnit(const std::string &u)
Definition: SEScalarLengthPerTime.h:10
static const LengthPerTimeUnit m_Per_min
Definition: SEScalarLengthPerTime.h:22
static const LengthPerTimeUnit cm_Per_min
Definition: SEScalarLengthPerTime.h:23
Definition: SEScalarLengthPerTime.h:30
SEScalarLengthPerTime()
Definition: SEScalarLengthPerTime.h:32
virtual ~SEScalarLengthPerTime()
Definition: SEScalarLengthPerTime.h:33
Definition: SEScalar.h:208

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.