mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 09:48:32 +00:00
#2037 Option to optain declaration from early bound select definitions
This commit is contained in:
@@ -55,6 +55,14 @@ class Implementation(codegen.Base):
|
||||
templates.enum_from_string_stmt % dict(context, **locals()) for value in enum.values
|
||||
),
|
||||
)
|
||||
|
||||
for name, enum in mapping.schema.selects.items():
|
||||
write(
|
||||
templates.select_function,
|
||||
name=name,
|
||||
schema_name=schema_name,
|
||||
schema_name_upper=schema_name_upper
|
||||
)
|
||||
|
||||
write = lambda str, **kwargs: entity_implementations.append(str % kwargs)
|
||||
|
||||
@@ -348,6 +356,10 @@ class Implementation(codegen.Base):
|
||||
("extern enumeration_type* %s_%%s_type;" % schema_name_upper) % n
|
||||
for n in mapping.schema.enumerations.keys()
|
||||
]
|
||||
+ [
|
||||
("extern select_type* %s_%%s_type;" % schema_name_upper) % n
|
||||
for n in mapping.schema.selects.keys()
|
||||
]
|
||||
)
|
||||
|
||||
self.str = templates.implementation % {
|
||||
|
||||
Reference in New Issue
Block a user