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