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