mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 09:48:32 +00:00
Allow setting of history and future
This commit is contained in:
@@ -528,6 +528,14 @@ class file_mixin:
|
||||
def transaction(self):
|
||||
return self.state[2]
|
||||
|
||||
@history.setter
|
||||
def history(self, v):
|
||||
self.state[0] = v
|
||||
|
||||
@future.setter
|
||||
def future(self, v):
|
||||
self.state[1] = v
|
||||
|
||||
@transaction.setter
|
||||
def transaction(self, v):
|
||||
self.state[2] = v
|
||||
|
||||
Reference in New Issue
Block a user