Python: ignore TracedCallback classes for the time being: they were never usable and were triggering pybindgen generate code compilation problems.
authorGustavo J. A. M. Carneiro <gjc@inescporto.pt>
Mon, 18 Aug 2008 16:00:10 +0100
changeset 3537 ab1673dcdf58
parent 3536 087b1b45b3b5
child 3538 99f49426595a
Python: ignore TracedCallback classes for the time being: they were never usable and were triggering pybindgen generate code compilation problems.
bindings/python/ns3modulescan.py
--- 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