Inheritance: IfcEnergyConversionDevice
Exemple #1
0
		internal new static IfcAirToAirHeatRecovery Parse(string strDef) { IfcAirToAirHeatRecovery d = new IfcAirToAirHeatRecovery(); int ipos = 0; parseFields(d, ParserSTEP.SplitLineFields(strDef), ref ipos); return d; }
Exemple #2
0
		internal IfcAirToAirHeatRecovery(IfcAirToAirHeatRecovery a) : base(a) { mPredefinedType = a.mPredefinedType; }
Exemple #3
0
		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(".", ""));
		}
Exemple #4
0
		internal IfcAirToAirHeatRecovery(DatabaseIfc db, IfcAirToAirHeatRecovery a) : base(db, a) { mPredefinedType = a.mPredefinedType; }