Inheritance: IfcEnergyConversionDevice
Exemplo 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; }
Exemplo n.º 2
0
		internal IfcEngine(IfcEngine e) : base(e) { mPredefinedType = e.mPredefinedType; }
Exemplo 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);
		}
Exemplo n.º 4
0
		internal IfcEngine(DatabaseIfc db, IfcEngine e) : base(db, e) { mPredefinedType = e.mPredefinedType; }