mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-24 00:07:53 +00:00
12 lines
218 B
Python
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
|