[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] r10413 - in gnuradio/branches/developers/michaelld/swi
From: |
michaelld |
Subject: |
[Commit-gnuradio] r10413 - in gnuradio/branches/developers/michaelld/swig_tweaks: gr-atsc/src/lib gr-audio-alsa/src gr-audio-jack/src gr-audio-oss/src gr-audio-osx/src gr-audio-portaudio/src gr-audio-windows/src gr-comedi/src gr-cvsd-vocoder/src/lib gr-gcell/src gr-gpio/src/lib gr-gsm-fr-vocoder/src/lib gr-howto-write-a-block/src/lib gr-msdd6000/src gr-pager/src gr-qtgui/src/lib gr-radio-astronomy/src/lib gr-trellis/src/lib gr-usrp/src gr-usrp2/src gr-video-sdl/src |
Date: |
Mon, 9 Feb 2009 13:05:37 -0700 (MST) |
Author: michaelld
Date: 2009-02-09 13:05:36 -0700 (Mon, 09 Feb 2009)
New Revision: 10413
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-atsc/src/lib/atsc.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-alsa/src/audio_alsa.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-jack/src/audio_jack.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-oss/src/audio_oss.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-osx/src/audio_osx.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-portaudio/src/audio_portaudio.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-windows/src/audio_windows.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-comedi/src/comedi.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-cvsd-vocoder/src/lib/cvsd_vocoder.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-gcell/src/gcell.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-gpio/src/lib/gpio.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-gsm-fr-vocoder/src/lib/gsm_full_rate.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-howto-write-a-block/src/lib/howto.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-msdd6000/src/msdd.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-pager/src/pager.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-qtgui/src/lib/qtgui.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-radio-astronomy/src/lib/ra.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-trellis/src/lib/trellis.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-usrp/src/usrp.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-usrp2/src/usrp2.i
gnuradio/branches/developers/michaelld/swig_tweaks/gr-video-sdl/src/video_sdl.i
Log:
Updated individual component's top-level .i file.
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-atsc/src/lib/atsc.i
===================================================================
--- gnuradio/branches/developers/michaelld/swig_tweaks/gr-atsc/src/lib/atsc.i
2009-02-08 21:13:04 UTC (rev 10412)
+++ gnuradio/branches/developers/michaelld/swig_tweaks/gr-atsc/src/lib/atsc.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,13 +1,28 @@
/* -*- c++ -*- */
+/*
+ * Copyright 2009 Free Software Foundation, Inc.
+ *
+ * This file is part of GNU Radio
+ *
+ * GNU Radio is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3, or (at your option)
+ * any later version.
+ *
+ * GNU Radio is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GNU Radio; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
-%feature("autodoc", "1"); // generate python docstrings
+%include "gnuradio.i" // the common stuff
-%include "exception.i"
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
-#include <stdexcept>
#include <atsc_randomizer.h>
#include <atsc_derandomizer.h>
#include <atsc_rs_encoder.h>
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-alsa/src/audio_alsa.i
===================================================================
---
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-alsa/src/audio_alsa.i
2009-02-08 21:13:04 UTC (rev 10412)
+++
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-alsa/src/audio_alsa.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2004,2006 Free Software Foundation, Inc.
+ * Copyright 2004,2006,2009 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -20,16 +20,11 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc","1");
+%include "gnuradio.i" // the common stuff
-%include "exception.i"
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "audio_alsa_sink.h"
#include "audio_alsa_source.h"
-#include <stdexcept>
%}
// ----------------------------------------------------------------
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-jack/src/audio_jack.i
===================================================================
---
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-jack/src/audio_jack.i
2009-02-08 21:13:04 UTC (rev 10412)
+++
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-jack/src/audio_jack.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2005 Free Software Foundation, Inc.
+ * Copyright 2005,2009 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -20,16 +20,11 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc","1");
+%include "gnuradio.i" // the common stuff
-%include "exception.i"
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "audio_jack_sink.h"
#include "audio_jack_source.h"
-#include <stdexcept>
%}
// ----------------------------------------------------------------
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-oss/src/audio_oss.i
===================================================================
---
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-oss/src/audio_oss.i
2009-02-08 21:13:04 UTC (rev 10412)
+++
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-oss/src/audio_oss.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2004 Free Software Foundation, Inc.
+ * Copyright 2004,2009 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -20,16 +20,11 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc","1");
+%include "gnuradio.i" // the common stuff
-%include "exception.i"
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "audio_oss_sink.h"
#include "audio_oss_source.h"
-#include <stdexcept>
%}
// ----------------------------------------------------------------
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-osx/src/audio_osx.i
===================================================================
---
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-osx/src/audio_osx.i
2009-02-08 21:13:04 UTC (rev 10412)
+++
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-osx/src/audio_osx.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2006 Free Software Foundation, Inc.
+ * Copyright 2006,2009 Free Software Foundation, Inc.
*
* This file is part of GNU Radio.
*
@@ -20,16 +20,11 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc","1");
+%include "gnuradio.i" // the common stuff
-%include "exception.i"
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "audio_osx_sink.h"
#include "audio_osx_source.h"
-#include <stdexcept>
%}
// ----------------------------------------------------------------
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-portaudio/src/audio_portaudio.i
===================================================================
---
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-portaudio/src/audio_portaudio.i
2009-02-08 21:13:04 UTC (rev 10412)
+++
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-portaudio/src/audio_portaudio.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2004 Free Software Foundation, Inc.
+ * Copyright 2004,2009 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -20,16 +20,11 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc","1");
+%include "gnuradio.i" // the common stuff
-%include "exception.i"
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "audio_portaudio_sink.h"
#include "audio_portaudio_source.h"
-#include <stdexcept>
%}
// ----------------------------------------------------------------
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-windows/src/audio_windows.i
===================================================================
---
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-windows/src/audio_windows.i
2009-02-08 21:13:04 UTC (rev 10412)
+++
gnuradio/branches/developers/michaelld/swig_tweaks/gr-audio-windows/src/audio_windows.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2004 Free Software Foundation, Inc.
+ * Copyright 2004,2009 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -20,16 +20,11 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc","1");
+%include "gnuradio.i" // the common stuff
-%include "exception.i"
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "audio_windows_sink.h"
#include "audio_windows_source.h"
-#include <stdexcept>
%}
// ----------------------------------------------------------------
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-comedi/src/comedi.i
===================================================================
--- gnuradio/branches/developers/michaelld/swig_tweaks/gr-comedi/src/comedi.i
2009-02-08 21:13:04 UTC (rev 10412)
+++ gnuradio/branches/developers/michaelld/swig_tweaks/gr-comedi/src/comedi.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2005 Free Software Foundation, Inc.
+ * Copyright 2005,2009 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -20,16 +20,11 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc","1");
+%include "gnuradio.i" // the common stuff
-%include "exception.i"
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "comedi_sink_s.h"
#include "comedi_source_s.h"
-#include <stdexcept>
%}
// ----------------------------------------------------------------
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-cvsd-vocoder/src/lib/cvsd_vocoder.i
===================================================================
---
gnuradio/branches/developers/michaelld/swig_tweaks/gr-cvsd-vocoder/src/lib/cvsd_vocoder.i
2009-02-08 21:13:04 UTC (rev 10412)
+++
gnuradio/branches/developers/michaelld/swig_tweaks/gr-cvsd-vocoder/src/lib/cvsd_vocoder.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2007 Free Software Foundation, Inc.
+ * Copyright 2007,2009 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -20,15 +20,11 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc","1");
-%include "exception.i"
-%import "gnuradio.i"
+%include "gnuradio.i"
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "cvsd_encode_sb.h"
#include "cvsd_decode_bs.h"
-#include <stdexcept>
%}
GR_SWIG_BLOCK_MAGIC(cvsd,encode_sb);
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-gcell/src/gcell.i
===================================================================
--- gnuradio/branches/developers/michaelld/swig_tweaks/gr-gcell/src/gcell.i
2009-02-08 21:13:04 UTC (rev 10412)
+++ gnuradio/branches/developers/michaelld/swig_tweaks/gr-gcell/src/gcell.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2008 Free Software Foundation, Inc.
+ * Copyright 2008,2009 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -19,18 +19,11 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-%feature("autodoc","1");
+%include "gnuradio.i" // the common stuff
-//%include "exception.i"
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
-//#include <stdexcept>
-
#include <gcell/gc_job_manager.h>
-#include <gcell_fft_vcc.h>
-
+#include <gcell_fft_vcc.h>
%}
%include "gc_job_manager.i"
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-gpio/src/lib/gpio.i
===================================================================
--- gnuradio/branches/developers/michaelld/swig_tweaks/gr-gpio/src/lib/gpio.i
2009-02-08 21:13:04 UTC (rev 10412)
+++ gnuradio/branches/developers/michaelld/swig_tweaks/gr-gpio/src/lib/gpio.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,14 +1,29 @@
/* -*- c++ -*- */
+/*
+ * Copyright 2009 Free Software Foundation, Inc.
+ *
+ * This file is part of GNU Radio
+ *
+ * GNU Radio is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3, or (at your option)
+ * any later version.
+ *
+ * GNU Radio is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GNU Radio; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
-%feature("autodoc", "1"); // generate python docstrings
+%include "gnuradio.i" // the common stuff
-%include "exception.i"
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "gpio_and_const_ss.h"
-#include <stdexcept>
%}
// ----------------------------------------------------------------
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-gsm-fr-vocoder/src/lib/gsm_full_rate.i
===================================================================
---
gnuradio/branches/developers/michaelld/swig_tweaks/gr-gsm-fr-vocoder/src/lib/gsm_full_rate.i
2009-02-08 21:13:04 UTC (rev 10412)
+++
gnuradio/branches/developers/michaelld/swig_tweaks/gr-gsm-fr-vocoder/src/lib/gsm_full_rate.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2005 Free Software Foundation, Inc.
+ * Copyright 2005,2009 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -20,15 +20,11 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc","1");
-%include "exception.i"
-%import "gnuradio.i"
+%include "gnuradio.i"
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "gsm_fr_encode_sp.h"
#include "gsm_fr_decode_ps.h"
-#include <stdexcept>
%}
GR_SWIG_BLOCK_MAGIC(gsm_fr,encode_sp);
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-howto-write-a-block/src/lib/howto.i
===================================================================
---
gnuradio/branches/developers/michaelld/swig_tweaks/gr-howto-write-a-block/src/lib/howto.i
2009-02-08 21:13:04 UTC (rev 10412)
+++
gnuradio/branches/developers/michaelld/swig_tweaks/gr-howto-write-a-block/src/lib/howto.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,15 +1,10 @@
/* -*- c++ -*- */
-%feature("autodoc", "1"); // generate python docstrings
+%include "gnuradio.i" // the common stuff
-%include "exception.i"
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "howto_square_ff.h"
#include "howto_square2_ff.h"
-#include <stdexcept>
%}
// ----------------------------------------------------------------
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-msdd6000/src/msdd.i
===================================================================
--- gnuradio/branches/developers/michaelld/swig_tweaks/gr-msdd6000/src/msdd.i
2009-02-08 21:13:04 UTC (rev 10412)
+++ gnuradio/branches/developers/michaelld/swig_tweaks/gr-msdd6000/src/msdd.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -20,12 +20,9 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc", "1"); // generate python docstrings
+%include "gnuradio.i" // the common stuff
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "msdd_source_s.h"
#include "msdd_source_c.h"
#include "msdd_source_simple.h"
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-pager/src/pager.i
===================================================================
--- gnuradio/branches/developers/michaelld/swig_tweaks/gr-pager/src/pager.i
2009-02-08 21:13:04 UTC (rev 10412)
+++ gnuradio/branches/developers/michaelld/swig_tweaks/gr-pager/src/pager.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,5 +1,5 @@
/*
- * Copyright 2005,2006 Free Software Foundation, Inc.
+ * Copyright 2005,2006,2009 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -19,18 +19,14 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc","1");
-%include "exception.i"
-%import "gnuradio.i"
+%include "gnuradio.i"
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "pager_flex_frame.h"
#include "pager_slicer_fb.h"
#include "pager_flex_sync.h"
#include "pager_flex_deinterleave.h"
#include "pager_flex_parse.h"
-#include <stdexcept>
%}
%include "pager_flex_frame.i"
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-qtgui/src/lib/qtgui.i
===================================================================
--- gnuradio/branches/developers/michaelld/swig_tweaks/gr-qtgui/src/lib/qtgui.i
2009-02-08 21:13:04 UTC (rev 10412)
+++ gnuradio/branches/developers/michaelld/swig_tweaks/gr-qtgui/src/lib/qtgui.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2008 Free Software Foundation, Inc.
+ * Copyright 2008,2009 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -20,15 +20,11 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc","1");
-%include "exception.i"
-%import "gnuradio.i"
+%include "gnuradio.i"
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "qtgui_sink_c.h"
#include "qtgui_sink_f.h"
-#include <stdexcept>
%}
GR_SWIG_BLOCK_MAGIC(qtgui,sink_c)
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-radio-astronomy/src/lib/ra.i
===================================================================
---
gnuradio/branches/developers/michaelld/swig_tweaks/gr-radio-astronomy/src/lib/ra.i
2009-02-08 21:13:04 UTC (rev 10412)
+++
gnuradio/branches/developers/michaelld/swig_tweaks/gr-radio-astronomy/src/lib/ra.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,15 +1,27 @@
/* -*- c++ -*- */
+/*
+ * Copyright 2009 Free Software Foundation, Inc.
+ *
+ * This file is part of GNU Radio
+ *
+ * GNU Radio is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3, or (at your option)
+ * any later version.
+ *
+ * GNU Radio is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GNU Radio; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
-%feature("autodoc", "1"); // generate python docstrings
+%include "gnuradio.i" // the common stuff
-%include "exception.i"
-%import "gnuradio.i" // the common stuff
-
-%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
-#include <stdexcept>
-%}
-
// We'll need something like this if we add C++ blocks...
// See the gr-howto-write-a-block tarball for examples
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-trellis/src/lib/trellis.i
===================================================================
---
gnuradio/branches/developers/michaelld/swig_tweaks/gr-trellis/src/lib/trellis.i
2009-02-08 21:13:04 UTC (rev 10412)
+++
gnuradio/branches/developers/michaelld/swig_tweaks/gr-trellis/src/lib/trellis.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,18 +1,33 @@
/* -*- c++ -*- */
+/*
+ * Copyright 2009 Free Software Foundation, Inc.
+ *
+ * This file is part of GNU Radio
+ *
+ * GNU Radio is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3, or (at your option)
+ * any later version.
+ *
+ * GNU Radio is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GNU Radio; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
-%feature("autodoc", "1"); // generate python docstrings
+%include "gnuradio.i" // the common stuff
-%include "exception.i"
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "fsm.h"
#include "interleaver.h"
#include "trellis_permutation.h"
#include "trellis_siso_f.h"
#include "trellis_siso_combined_f.h"
-#include <stdexcept>
%}
// ----------------------------------------------------------------
Modified: gnuradio/branches/developers/michaelld/swig_tweaks/gr-usrp/src/usrp.i
===================================================================
--- gnuradio/branches/developers/michaelld/swig_tweaks/gr-usrp/src/usrp.i
2009-02-08 21:13:04 UTC (rev 10412)
+++ gnuradio/branches/developers/michaelld/swig_tweaks/gr-usrp/src/usrp.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -20,12 +20,9 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc", "1"); // generate python docstrings
+%include "gnuradio.i" // the common stuff
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include <vector>
%}
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-usrp2/src/usrp2.i
===================================================================
--- gnuradio/branches/developers/michaelld/swig_tweaks/gr-usrp2/src/usrp2.i
2009-02-08 21:13:04 UTC (rev 10412)
+++ gnuradio/branches/developers/michaelld/swig_tweaks/gr-usrp2/src/usrp2.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -20,13 +20,10 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc", "1"); // generate python docstrings
+%include "gnuradio.i" // the common stuff
+%import <stdint.i>
-%import "gnuradio.i" // the common stuff
-%import <stdint.i>
-
%{
-#include <gnuradio_swig_bug_workaround.h>
#include "usrp2_source_16sc.h"
#include "usrp2_source_32fc.h"
#include "usrp2_sink_16sc.h"
Modified:
gnuradio/branches/developers/michaelld/swig_tweaks/gr-video-sdl/src/video_sdl.i
===================================================================
---
gnuradio/branches/developers/michaelld/swig_tweaks/gr-video-sdl/src/video_sdl.i
2009-02-08 21:13:04 UTC (rev 10412)
+++
gnuradio/branches/developers/michaelld/swig_tweaks/gr-video-sdl/src/video_sdl.i
2009-02-09 20:05:36 UTC (rev 10413)
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2006 Free Software Foundation, Inc.
+ * Copyright 2006,2009 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -20,16 +20,11 @@
* Boston, MA 02110-1301, USA.
*/
-%feature("autodoc","1");
+%include "gnuradio.i" // the common stuff
-%include "exception.i"
-%import "gnuradio.i" // the common stuff
-
%{
-#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "video_sdl_sink_uc.h"
#include "video_sdl_sink_s.h"
-#include <stdexcept>
%}
// ----------------------------------------------------------------
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] r10413 - in gnuradio/branches/developers/michaelld/swig_tweaks: gr-atsc/src/lib gr-audio-alsa/src gr-audio-jack/src gr-audio-oss/src gr-audio-osx/src gr-audio-portaudio/src gr-audio-windows/src gr-comedi/src gr-cvsd-vocoder/src/lib gr-gcell/src gr-gpio/src/lib gr-gsm-fr-vocoder/src/lib gr-howto-write-a-block/src/lib gr-msdd6000/src gr-pager/src gr-qtgui/src/lib gr-radio-astronomy/src/lib gr-trellis/src/lib gr-usrp/src gr-usrp2/src gr-video-sdl/src,
michaelld <=