Skip to content

Commit

Permalink
JSON scans non IUnknown too
Browse files Browse the repository at this point in the history
  • Loading branch information
sebaszm committed Jun 18, 2024
1 parent ca53c78 commit 6651b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JsonGenerator/source/header_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def StripFrameworkNamespace(identifier):
def StripInterfaceNamespace(identifier):
return str(identifier).replace(ns + "::", "")

interfaces = [i for i in CppInterface.FindInterfaceClasses(tree, ns, file, ["::%s::Core::IUnknown" % config.FRAMEWORK_NAMESPACE]) if (i.obj.is_json or (all and not i.obj.is_event))]
interfaces = [i for i in CppInterface.FindInterfaceClasses(tree, ns, file, []) if (i.obj.is_json or (all and not i.obj.is_event))]

def Build(face):
def _EvaluateRpcFormat(obj):
Expand Down

0 comments on commit 6651b26

Please sign in to comment.