Inheritance: IfcEnergyConversionDevice
Exemplo n.º 1
0
 public Pset_BoilerTypeWater(IfcBoiler boiler)
     : base(boiler.mDatabase, "Pset_BoilerTypeWater")
 {
     Description = boiler.Name; DefinesOccurrence.Assign(boiler);
 }
Exemplo n.º 2
0
 internal IfcBoiler(DatabaseIfc db, IfcBoiler b, DuplicateOptions options) : base(db, b, options)
 {
     mPredefinedType = b.mPredefinedType;
 }
Exemplo n.º 3
0
 internal IfcBoiler(DatabaseIfc db, IfcBoiler b, IfcOwnerHistory ownerHistory, bool downStream) : base(db, b, ownerHistory, downStream)
 {
     mPredefinedType = b.mPredefinedType;
 }
Exemplo n.º 4
0
		internal new static IfcBoiler Parse(string strDef) { IfcBoiler d = new IfcBoiler(); int ipos = 0; parseFields(d, ParserSTEP.SplitLineFields(strDef), ref ipos); return d; }
Exemplo n.º 5
0
		internal static void parseFields(IfcBoiler a, List<string> arrFields, ref int ipos)
		{
			IfcDistributionControlElement.parseFields(a, arrFields, ref ipos);
			string s = arrFields[ipos++];
			if (s.StartsWith("."))
				a.mPredefinedType = (IfcBoilerTypeEnum)Enum.Parse(typeof(IfcBoilerTypeEnum), s.Replace(".", ""));
		}
Exemplo n.º 6
0
		internal IfcBoiler(IfcBoiler b) : base(b) { mPredefinedType = b.mPredefinedType; }
Exemplo n.º 7
0
 internal IfcBoiler(DatabaseIfc db, IfcBoiler b)
     : base(db,b)
 {
     mPredefinedType = b.mPredefinedType;
 }