Inheritance: IfcFlowTreatmentDeviceType
Exemple #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; }
Exemple #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(".", "")); }
Exemple #3
0
		internal IfcInterceptorType(IfcInterceptorType be) : base(be) { mPredefinedType = be.mPredefinedType; }
Exemple #4
0
 internal IfcInterceptorType(DatabaseIfc db, IfcInterceptorType t)
     : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }
Exemple #5
0
 internal IfcInterceptorType(IfcInterceptorType be) : base(be)
 {
     mPredefinedType = be.mPredefinedType;
 }
Exemple #6
0
 internal IfcInterceptorType(DatabaseIfc db, IfcInterceptorType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }