Python: ignore TracedCallback classes for the time being: they were never usable and were triggering pybindgen generate code compilation problems.
1.1 --- a/bindings/python/ns3modulescan.py Fri Aug 15 10:15:54 2008 -0700
1.2 +++ b/bindings/python/ns3modulescan.py Mon Aug 18 16:00:10 2008 +0100
1.3 @@ -166,6 +166,10 @@
1.4 global_annotations['ignore'] = None
1.5 return
1.6
1.7 + if pygccxml_definition.decl_string.startswith('::ns3::TracedCallback<'):
1.8 + global_annotations['ignore'] = None
1.9 + return
1.10 +
1.11 if pygccxml_definition.decl_string.startswith('::ns3::Ptr<'):
1.12 # handled by pybindgen "type transformation"
1.13 global_annotations['ignore'] = None