예제 #1
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		internal static IfcPerformanceHistory Parse(string strDef, Schema schema) { IfcPerformanceHistory h = new IfcPerformanceHistory(); int ipos = 0; parseFields(h, ParserSTEP.SplitLineFields(strDef), ref ipos,schema); return h; }
예제 #2
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcPerformanceHistory h, List<string> arrFields, ref int ipos, Schema schema) { IfcControl.parseFields(h, arrFields, ref ipos,schema); h.mLifeCyclePhase = arrFields[ipos++]; }
예제 #3
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcPerformanceHistory(IfcPerformanceHistory i) : base((IfcControl)i) { mLifeCyclePhase = i.mLifeCyclePhase; }