Inheritance: IfcFlowTreatmentDeviceType
Esempio n. 1
0
		internal new static IfcInterceptorType Parse(string strDef) { IfcInterceptorType t = new IfcInterceptorType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
Esempio n. 2
0
		internal static void parseFields(IfcInterceptorType t, List<string> arrFields, ref int ipos) { IfcFlowTreatmentDeviceType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcInterceptorTypeEnum)Enum.Parse(typeof(IfcInterceptorTypeEnum), arrFields[ipos++].Replace(".", "")); }
Esempio n. 3
0
		internal IfcInterceptorType(IfcInterceptorType be) : base(be) { mPredefinedType = be.mPredefinedType; }
Esempio n. 4
0
 internal IfcInterceptorType(DatabaseIfc db, IfcInterceptorType t)
     : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Esempio n. 5
0
 internal IfcInterceptorType(IfcInterceptorType be) : base(be)
 {
     mPredefinedType = be.mPredefinedType;
 }
Esempio n. 6
0
 internal IfcInterceptorType(DatabaseIfc db, IfcInterceptorType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }