Ejemplo n.º 1
0
		internal static void parseFields(IfcPipeSegmentType t, List<string> arrFields, ref int ipos) { IfcFlowSegmentType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcPipeSegmentTypeEnum)Enum.Parse(typeof(IfcPipeSegmentTypeEnum), arrFields[ipos++].Replace(".", "")); }
Ejemplo n.º 2
0
		internal new static IfcPipeSegmentType Parse(string strDef) { IfcPipeSegmentType t = new IfcPipeSegmentType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
Ejemplo n.º 3
0
		internal IfcPipeSegmentType(IfcPipeSegmentType t) : base(t) { mPredefinedType = t.mPredefinedType; }