From 8e8335e2e4f20e3015956b30f05013913cb3fc54 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Sat, 21 Apr 2012 09:05:56 -0700 Subject: core: add SWIG macro for namespaced blocks --- gnuradio-core/src/lib/swig/gnuradio.i | 3 +++ gnuradio-core/src/lib/swig/gr_swig_block_magic.i | 10 +++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/gnuradio-core/src/lib/swig/gnuradio.i b/gnuradio-core/src/lib/swig/gnuradio.i index 239223851..3a421ad5d 100644 --- a/gnuradio-core/src/lib/swig/gnuradio.i +++ b/gnuradio-core/src/lib/swig/gnuradio.i @@ -20,6 +20,9 @@ * Boston, MA 02110-1301, USA. */ +// Disable warning about base class types +#pragma SWIG nowarn=401 + //////////////////////////////////////////////////////////////////////// // gnuradio.i // SWIG interface definition diff --git a/gnuradio-core/src/lib/swig/gr_swig_block_magic.i b/gnuradio-core/src/lib/swig/gr_swig_block_magic.i index cdc9fbe49..4016ae772 100644 --- a/gnuradio-core/src/lib/swig/gr_swig_block_magic.i +++ b/gnuradio-core/src/lib/swig/gr_swig_block_magic.i @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2004,2010 Free Software Foundation, Inc. + * Copyright 2004,2010,2012 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -40,3 +40,11 @@ FULL_NAME ## _sptr.__repr__ = lambda self: "" % (self.name(), %} %enddef #endif + +%define GR_SWIG_BLOCK_MAGIC2(PKG, BASE_NAME) +%template(BASE_NAME ## _sptr) boost::shared_ptr; +%pythoncode %{ +BASE_NAME ## _sptr.__repr__ = lambda self: "" % (self.name(), self.unique_id()) +BASE_NAME = BASE_NAME.make; +%} +%enddef -- cgit