Inheritance: IfcEnergyConversionDevice
Example #1
0
		internal new static IfcEvaporativeCooler Parse(string strDef) { IfcEvaporativeCooler s = new IfcEvaporativeCooler(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
Example #2
0
		internal IfcEvaporativeCooler(IfcEvaporativeCooler c) : base(c) { mPredefinedType = c.mPredefinedType; }
Example #3
0
		internal static void parseFields(IfcEvaporativeCooler s, List<string> arrFields, ref int ipos)
		{
			IfcEnergyConversionDevice.parseFields(s, arrFields, ref ipos);
			string str = arrFields[ipos++];
			if (str[0] == '.')
				s.mPredefinedType = (IfcEvaporativeCoolerTypeEnum)Enum.Parse(typeof(IfcEvaporativeCoolerTypeEnum), str);
		}
Example #4
0
		internal IfcEvaporativeCooler(DatabaseIfc db, IfcEvaporativeCooler c) : base(db, c) { mPredefinedType = c.mPredefinedType; }