mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-30 16:43:00 +00:00
Allow setting of history and future
This commit is contained in:
@@ -528,6 +528,14 @@ class file_mixin:
|
|||||||
def transaction(self):
|
def transaction(self):
|
||||||
return self.state[2]
|
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
|
@transaction.setter
|
||||||
def transaction(self, v):
|
def transaction(self, v):
|
||||||
self.state[2] = v
|
self.state[2] = v
|
||||||
|
|||||||
Reference in New Issue
Block a user