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