internal new static IfcEvaporator Parse(string strDef) { IfcEvaporator s = new IfcEvaporator(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
internal IfcEvaporator(IfcEvaporator e) : base(e) { mPredefinedType = e.mPredefinedType; }
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); }
internal IfcEvaporator(DatabaseIfc db, IfcEvaporator e) : base(db, e) { mPredefinedType = e.mPredefinedType; }