コード例 #1
0
ファイル: IFC C.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcChillerType t, List<string> arrFields, ref int ipos) { IfcEnergyConversionDeviceType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcChillerTypeEnum)Enum.Parse(typeof(IfcChillerTypeEnum), arrFields[ipos++].Replace(".", "")); }
コード例 #2
0
ファイル: IFC C.cs プロジェクト: jenca-cloud/ggIFC
		internal new static IfcChillerType Parse(string strDef) { IfcChillerType t = new IfcChillerType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
コード例 #3
0
ファイル: IFC C.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcChillerType(IfcChillerType t) : base(t) { mPredefinedType = t.mPredefinedType; }