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