Наследование: IfcEnergyConversionDevice
Пример #1
0
		internal new static IfcElectricGenerator Parse(string strDef) { IfcElectricGenerator s = new IfcElectricGenerator(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
Пример #2
0
		internal IfcElectricGenerator(IfcElectricGenerator g) : base(g) { mPredefinedType = g.mPredefinedType; }
Пример #3
0
		internal static void parseFields(IfcElectricGenerator s, List<string> arrFields, ref int ipos)
		{
			IfcEnergyConversionDevice.parseFields(s, arrFields, ref ipos);
			string str = arrFields[ipos++];
			if (str[0] == '.')
				s.mPredefinedType = (IfcElectricGeneratorTypeEnum)Enum.Parse(typeof(IfcElectricGeneratorTypeEnum), str);
		}
Пример #4
0
		internal IfcElectricGenerator(DatabaseIfc db, IfcElectricGenerator g) : base(db, g) { mPredefinedType = g.mPredefinedType; }