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