From 0335beed146ad624341356647fff2e1038e61ec8 Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Mon, 18 Aug 2008 16:00:10 +0100 Subject: [PATCH] Python: ignore TracedCallback classes for the time being: they were never usable and were triggering pybindgen generate code compilation problems. --- bindings/python/ns3modulescan.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bindings/python/ns3modulescan.py b/bindings/python/ns3modulescan.py index 1bd148959..942f77496 100644 --- a/bindings/python/ns3modulescan.py +++ b/bindings/python/ns3modulescan.py @@ -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