Inheritance: IfcEnergyConversionDeviceType
コード例 #1
0
ファイル: IFC E.cs プロジェクト: jenca-cloud/ggIFC
		internal new static IfcEngineType Parse(string strDef) { IfcEngineType t = new IfcEngineType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
コード例 #2
0
ファイル: IFC E.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcEngineType(IfcEngineType be) : base(be) { mPredefinedType = be.mPredefinedType; }
コード例 #3
0
ファイル: IFC E.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcEngineType t, List<string> arrFields, ref int ipos) { IfcEnergyConversionDeviceType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcEngineTypeEnum)Enum.Parse(typeof(IfcEngineTypeEnum), arrFields[ipos++].Replace(".", "")); }
コード例 #4
0
ファイル: IFC E.cs プロジェクト: jmirtsch/GeometryGymIFC
		internal IfcEngineType(DatabaseIfc db, IfcEngineType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }