Exemple #1
0
		internal static IfcPropertySet Parse(string str)
		{
			IfcPropertySet p = new IfcPropertySet();
			int pos = 0;
			p.parseString(str, ref pos);
			p.mHasProperties = ParserSTEP.StripListLink(str, ref pos);
			return p;
		}