Inheritance: IfcDistributionElement
コード例 #1
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal new static IfcDistributionFlowElement Parse(string strDef) { IfcDistributionFlowElement e = new IfcDistributionFlowElement(); int ipos = 0; parseFields(e, ParserSTEP.SplitLineFields(strDef), ref ipos); return e; }
コード例 #2
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcDistributionFlowElement e, List<string> arrFields, ref int ipos) { IfcDistributionElement.parseFields(e, arrFields, ref ipos); }
コード例 #3
0
ファイル: IFC D.cs プロジェクト: jmirtsch/GeometryGymIFC
		internal IfcDistributionFlowElement(DatabaseIfc db, IfcDistributionFlowElement e) : base(db,e) { }
コード例 #4
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcDistributionFlowElement(IfcDistributionFlowElement e) : base(e) { }
コード例 #5
0
ファイル: IFC D.cs プロジェクト: jmirtsch/GeometryGymIFC
		protected IfcDistributionFlowElement(IfcDistributionFlowElement basis) : base(basis) { mSourcePort = basis.mSourcePort; mSinkPort = basis.mSinkPort;  }