internal static void parseFields(IfcFlowMeter s, List<string> arrFields, ref int ipos) { IfcEnergyConversionDevice.parseFields(s, arrFields, ref ipos); string str = arrFields[ipos++]; if (str[0] == '.') s.mPredefinedType = (IfcFlowMeterTypeEnum)Enum.Parse(typeof(IfcFlowMeterTypeEnum), str); }
internal static new IfcFlowMeter Parse(string strDef) { IfcFlowMeter s = new IfcFlowMeter(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
internal IfcFlowMeter(IfcFlowMeter m) : base(m) { mPredefinedType = m.mPredefinedType; }
internal IfcFlowMeter(DatabaseIfc db, IfcFlowMeter m) : base(db, m) { mPredefinedType = m.mPredefinedType; }
internal IfcFlowMeter(DatabaseIfc db, IfcFlowMeter m, DuplicateOptions options) : base(db, m, options) { mPredefinedType = m.mPredefinedType; }