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