Inheritance: IfcEnergyConversionDeviceType
Ejemplo n.º 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; }
Ejemplo n.º 2
0
		internal IfcEvaporatorType(IfcEvaporatorType be) : base(be) { mPredefinedType = be.mPredefinedType; }
Ejemplo n.º 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(".", "")); }
Ejemplo n.º 4
0
		internal IfcEvaporatorType(DatabaseIfc db, IfcEvaporatorType t) : base(db,t) { mPredefinedType = t.mPredefinedType; }