Files
IfcOpenShell/src/ifcblenderexport/blenderbim/bim/bcfstore.py
T

12 lines
218 B
Python

import bcf
import bcf.bcfxml
class BcfStore:
bcfxml = None
@staticmethod
def get_bcfxml():
if not BcfStore.bcfxml:
BcfStore.bcfxml = bcf.bcfxml.BcfXml()
return BcfStore.bcfxml