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