Python: ignore TracedCallback classes for the time being: they were never usable and were triggering pybindgen generate code compilation problems.

This commit is contained in:
Gustavo J. A. M. Carneiro
2008-08-18 16:00:10 +01:00
parent c71981e5a2
commit 0335beed14

View File

@@ -166,6 +166,10 @@ def pre_scan_hook(dummy_module_parser,
global_annotations['ignore'] = None
return
if pygccxml_definition.decl_string.startswith('::ns3::TracedCallback<'):
global_annotations['ignore'] = None
return
if pygccxml_definition.decl_string.startswith('::ns3::Ptr<'):
# handled by pybindgen "type transformation"
global_annotations['ignore'] = None