Python: ignore TracedCallback classes for the time being: they were never usable and were triggering pybindgen generate code compilation problems.
--- a/bindings/python/ns3modulescan.py Fri Aug 15 10:15:54 2008 -0700
+++ b/bindings/python/ns3modulescan.py Mon Aug 18 16:00:10 2008 +0100
@@ -166,6 +166,10 @@
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