Inheritance: IfcFlowController
Beispiel #1
0
 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);
 }
Beispiel #2
0
 internal static new IfcFlowMeter Parse(string strDef)
 {
     IfcFlowMeter s = new IfcFlowMeter(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s;
 }
Beispiel #3
0
		internal IfcFlowMeter(IfcFlowMeter m) : base(m) { mPredefinedType = m.mPredefinedType; }
Beispiel #4
0
 internal IfcFlowMeter(DatabaseIfc db, IfcFlowMeter m)
     : base(db, m)
 {
     mPredefinedType = m.mPredefinedType;
 }
Beispiel #5
0
 internal IfcFlowMeter(DatabaseIfc db, IfcFlowMeter m, DuplicateOptions options) : base(db, m, options)
 {
     mPredefinedType = m.mPredefinedType;
 }