상속: IfcFlowTreatmentDevice
예제 #1
0
        internal static void parseFields(IfcInterceptor a, List <string> arrFields, ref int ipos)
        {
            IfcDistributionControlElement.parseFields(a, arrFields, ref ipos);
            string s = arrFields[ipos++];

            if (s.StartsWith("."))
            {
                a.mPredefinedType = (IfcInterceptorTypeEnum)Enum.Parse(typeof(IfcInterceptorTypeEnum), s.Replace(".", ""));
            }
        }
예제 #2
0
 internal new static IfcInterceptor Parse(string strDef)
 {
     IfcInterceptor d = new IfcInterceptor(); int ipos = 0; parseFields(d, ParserSTEP.SplitLineFields(strDef), ref ipos); return(d);
 }
예제 #3
0
 internal IfcInterceptor(DatabaseIfc db, IfcInterceptor i) : base(db, i)
 {
     mPredefinedType = i.mPredefinedType;
 }
예제 #4
0
파일: IFC I.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcInterceptor Parse(string strDef) { IfcInterceptor d = new IfcInterceptor(); int ipos = 0; parseFields(d, ParserSTEP.SplitLineFields(strDef), ref ipos); return d; }
예제 #5
0
 internal IfcInterceptor(DatabaseIfc db, IfcInterceptor i, DuplicateOptions options) : base(db, i, options)
 {
     mPredefinedType = i.mPredefinedType;
 }
예제 #6
0
파일: IFC I.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcInterceptor a, List<string> arrFields, ref int ipos)
		{
			IfcDistributionControlElement.parseFields(a, arrFields, ref ipos);
			string s = arrFields[ipos++];
			if (s.StartsWith("."))
				a.mPredefinedType = (IfcInterceptorTypeEnum)Enum.Parse(typeof(IfcInterceptorTypeEnum), s.Replace(".", ""));
		}
예제 #7
0
파일: IFC I.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcInterceptor(IfcInterceptor a) : base(a) { mPredefinedType = a.mPredefinedType; }
예제 #8
0
 internal IfcInterceptor(DatabaseIfc db, IfcInterceptor i)
     : base(db, i)
 {
     mPredefinedType = i.mPredefinedType;
 }
예제 #9
0
 internal IfcInterceptor(DatabaseIfc db, IfcInterceptor i, IfcOwnerHistory ownerHistory, bool downStream) : base(db, i, ownerHistory, downStream)
 {
     mPredefinedType = i.mPredefinedType;
 }
예제 #10
0
 internal IfcInterceptor(IfcInterceptor a) : base(a)
 {
     mPredefinedType = a.mPredefinedType;
 }