internal static void parseFields(IfcOutlet s, List<string> arrFields, ref int ipos) { IfcFlowTerminal.parseFields(s, arrFields, ref ipos); string str = arrFields[ipos++]; if (str[0] == '.') s.mPredefinedType = (IfcOutletTypeEnum)Enum.Parse(typeof(IfcOutletTypeEnum), str.Substring(1, str.Length - 2)); }
internal new static IfcOutlet Parse(string strDef) { IfcOutlet s = new IfcOutlet(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return(s); }
internal IfcOutlet(DatabaseIfc db, IfcOutlet o) : base(db, o) { mPredefinedType = o.mPredefinedType; }
internal IfcOutlet(IfcOutlet o) : base(o) { mPredefinedType = o.mPredefinedType; }
internal new static IfcOutlet Parse(string strDef) { IfcOutlet s = new IfcOutlet(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }