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