Inheritance: IfcEnergyConversionDeviceType
Exemple #1
0
		internal new static IfcEvaporatorType Parse(string strDef) { IfcEvaporatorType t = new IfcEvaporatorType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
Exemple #2
0
		internal IfcEvaporatorType(IfcEvaporatorType be) : base(be) { mPredefinedType = be.mPredefinedType; }
Exemple #3
0
		internal static void parseFields(IfcEvaporatorType t, List<string> arrFields, ref int ipos) { IfcEnergyConversionDeviceType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcEvaporatorTypeEnum)Enum.Parse(typeof(IfcEvaporatorTypeEnum), arrFields[ipos++].Replace(".", "")); }
Exemple #4
0
		internal IfcEvaporatorType(DatabaseIfc db, IfcEvaporatorType t) : base(db,t) { mPredefinedType = t.mPredefinedType; }