File: IfcUnitEnum.h

package info (click to toggle)
ifcplusplus 0~git20190402.13744d5%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 16,716 kB
  • sloc: cpp: 199,083; makefile: 31
file content (60 lines) | stat: -rw-r--r-- 2,278 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* Code generated by IfcQuery EXPRESS generator, www.ifcquery.com */

#pragma once
#include <vector>
#include <map>
#include <sstream>
#include <string>
#include "ifcpp/model/GlobalDefines.h"
#include "ifcpp/model/BasicTypes.h"
#include "ifcpp/model/BuildingObject.h"

// TYPE IfcUnitEnum = ENUMERATION OF	(ABSORBEDDOSEUNIT	,AMOUNTOFSUBSTANCEUNIT	,AREAUNIT	,DOSEEQUIVALENTUNIT	,ELECTRICCAPACITANCEUNIT	,ELECTRICCHARGEUNIT	,ELECTRICCONDUCTANCEUNIT	,ELECTRICCURRENTUNIT	,ELECTRICRESISTANCEUNIT	,ELECTRICVOLTAGEUNIT	,ENERGYUNIT	,FORCEUNIT	,FREQUENCYUNIT	,ILLUMINANCEUNIT	,INDUCTANCEUNIT	,LENGTHUNIT	,LUMINOUSFLUXUNIT	,LUMINOUSINTENSITYUNIT	,MAGNETICFLUXDENSITYUNIT	,MAGNETICFLUXUNIT	,MASSUNIT	,PLANEANGLEUNIT	,POWERUNIT	,PRESSUREUNIT	,RADIOACTIVITYUNIT	,SOLIDANGLEUNIT	,THERMODYNAMICTEMPERATUREUNIT	,TIMEUNIT	,VOLUMEUNIT	,USERDEFINED);
class IFCQUERY_EXPORT IfcUnitEnum : virtual public BuildingObject
{
public:
	enum IfcUnitEnumEnum
	{
		ENUM_ABSORBEDDOSEUNIT,
		ENUM_AMOUNTOFSUBSTANCEUNIT,
		ENUM_AREAUNIT,
		ENUM_DOSEEQUIVALENTUNIT,
		ENUM_ELECTRICCAPACITANCEUNIT,
		ENUM_ELECTRICCHARGEUNIT,
		ENUM_ELECTRICCONDUCTANCEUNIT,
		ENUM_ELECTRICCURRENTUNIT,
		ENUM_ELECTRICRESISTANCEUNIT,
		ENUM_ELECTRICVOLTAGEUNIT,
		ENUM_ENERGYUNIT,
		ENUM_FORCEUNIT,
		ENUM_FREQUENCYUNIT,
		ENUM_ILLUMINANCEUNIT,
		ENUM_INDUCTANCEUNIT,
		ENUM_LENGTHUNIT,
		ENUM_LUMINOUSFLUXUNIT,
		ENUM_LUMINOUSINTENSITYUNIT,
		ENUM_MAGNETICFLUXDENSITYUNIT,
		ENUM_MAGNETICFLUXUNIT,
		ENUM_MASSUNIT,
		ENUM_PLANEANGLEUNIT,
		ENUM_POWERUNIT,
		ENUM_PRESSUREUNIT,
		ENUM_RADIOACTIVITYUNIT,
		ENUM_SOLIDANGLEUNIT,
		ENUM_THERMODYNAMICTEMPERATUREUNIT,
		ENUM_TIMEUNIT,
		ENUM_VOLUMEUNIT,
		ENUM_USERDEFINED
	};

	IfcUnitEnum() = default;
	IfcUnitEnum( IfcUnitEnumEnum e ) { m_enum = e; }
	~IfcUnitEnum();
	virtual const char* className() const { return "IfcUnitEnum"; }
	virtual shared_ptr<BuildingObject> getDeepCopy( BuildingCopyOptions& options );
	virtual void getStepParameter( std::stringstream& stream, bool is_select_type = false ) const;
	virtual const std::wstring toString() const;
	static shared_ptr<IfcUnitEnum> createObjectFromSTEP( const std::wstring& arg, const std::map<int,shared_ptr<BuildingEntity> >& map );
	IfcUnitEnumEnum m_enum;
};