Exemplo n.º 1
0
		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; }
Exemplo n.º 2
0
		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++]; }
Exemplo n.º 3
0
		internal IfcPerformanceHistory(IfcPerformanceHistory i) : base((IfcControl)i) { mLifeCyclePhase = i.mLifeCyclePhase; }