Inheritance: IfcEnergyConversionDevice
Beispiel #1
0
		internal new static IfcEvaporator Parse(string strDef) { IfcEvaporator s = new IfcEvaporator(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
Beispiel #2
0
		internal IfcEvaporator(IfcEvaporator e) : base(e) { mPredefinedType = e.mPredefinedType; }
Beispiel #3
0
		internal static void parseFields(IfcEvaporator s, List<string> arrFields, ref int ipos)
		{
			IfcEnergyConversionDevice.parseFields(s, arrFields, ref ipos);
			string str = arrFields[ipos++];
			if (str[0] == '.')
				s.mPredefinedType = (IfcEvaporatorTypeEnum)Enum.Parse(typeof(IfcEvaporatorTypeEnum), str);
		}
Beispiel #4
0
		internal IfcEvaporator(DatabaseIfc db, IfcEvaporator e) : base(db, e) { mPredefinedType = e.mPredefinedType; }