From 7361ce25f30ddfcc7538fec4a8b4cb9044201a03 Mon Sep 17 00:00:00 2001 From: Alexandru Csete Date: Thu, 8 Mar 2012 15:25:58 -0800 Subject: Initial import of out-of-tree files from Alexandru Csete --- gr-fcd/swig/fcd_swig.i | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 gr-fcd/swig/fcd_swig.i (limited to 'gr-fcd/swig/fcd_swig.i') diff --git a/gr-fcd/swig/fcd_swig.i b/gr-fcd/swig/fcd_swig.i new file mode 100644 index 000000000..8b240fc35 --- /dev/null +++ b/gr-fcd/swig/fcd_swig.i @@ -0,0 +1,19 @@ +/* -*- c++ -*- */ + +%include "gnuradio.i" // the common stuff + +%{ +#include "fcd_source_c.h" +%} + +%include "fcd_source_c.i" + +#if SWIGGUILE +%scheme %{ +(load-extension-global "libguile-gnuradio-fcd_swig" "scm_init_gnuradio_fcd_swig_module") +%} + +%goops %{ +(use-modules (gnuradio gnuradio_core_runtime)) +%} +#endif -- cgit From 15b215a42472c478a8b45e1be293de3eca6d2ee9 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Thu, 8 Mar 2012 16:53:03 -0800 Subject: fcd: convert out-of-tree autotools build to in-tree This still needs doc directory conversion to new documentation system. --- gr-fcd/swig/fcd_swig.i | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) (limited to 'gr-fcd/swig/fcd_swig.i') diff --git a/gr-fcd/swig/fcd_swig.i b/gr-fcd/swig/fcd_swig.i index 8b240fc35..a565fb895 100644 --- a/gr-fcd/swig/fcd_swig.i +++ b/gr-fcd/swig/fcd_swig.i @@ -1,6 +1,29 @@ /* -*- c++ -*- */ +/* + * Copyright 2012 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. + */ -%include "gnuradio.i" // the common stuff +%include "gnuradio.i" + +//load generated python docstrings +%include "fcd_swig_doc.i" %{ #include "fcd_source_c.h" -- cgit