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 Aug 18 16:00:10 2008 +0100 (18 months ago)
changeset 3553ab1673dcdf58
parent 3552 087b1b45b3b5
child 3554 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
     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