상속: IfcFlowTreatmentDevice
예제 #1
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcDuctSilencer Parse(string strDef) { IfcDuctSilencer d = new IfcDuctSilencer(); int ipos = 0; parseFields(d, ParserSTEP.SplitLineFields(strDef), ref ipos); return d; }
예제 #2
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcDuctSilencer(IfcDuctSilencer a) : base(a) { mPredefinedType = a.mPredefinedType; }
예제 #3
0
파일: IFC D.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcDuctSilencer a, List<string> arrFields, ref int ipos)
		{
			IfcDistributionControlElement.parseFields(a, arrFields, ref ipos);
			string s = arrFields[ipos++];
			if (s.StartsWith("."))
				a.mPredefinedType = (IfcDuctSilencerTypeEnum)Enum.Parse(typeof(IfcDuctSilencerTypeEnum), s.Replace(".", ""));
		}
예제 #4
0
		internal IfcDuctSilencer(DatabaseIfc db, IfcDuctSilencer s) : base(db, s) { mPredefinedType = s.mPredefinedType; }