Example #1
0
		internal static void parseFields(IfcMonetaryUnit u, List<string> arrFields, ref int ipos,Schema schema) { u.mCurrency = arrFields[ipos++].Replace(schema == Schema.IFC2x3 ? "." : "'", ""); }
Example #2
0
		internal static IfcMonetaryUnit Parse(string strDef,Schema schema) { IfcMonetaryUnit u = new IfcMonetaryUnit(); int ipos = 0; parseFields(u, ParserSTEP.SplitLineFields(strDef), ref ipos,schema); return u; }
Example #3
0
		internal string mCurrency = "USD";	 //: IFC4 change	Ifc2x3 IfcCurrencyEnum 

		internal IfcMonetaryUnit(IfcMonetaryUnit p) : base(p) { }