commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r9882 - gnuradio/branches/developers/brickle/neww/gnur


From: brickle
Subject: [Commit-gnuradio] r9882 - gnuradio/branches/developers/brickle/neww/gnuradio-core/src/lib/general
Date: Tue, 28 Oct 2008 14:11:49 -0600 (MDT)

Author: brickle
Date: 2008-10-28 14:11:49 -0600 (Tue, 28 Oct 2008)
New Revision: 9882

Added:
   
gnuradio/branches/developers/brickle/neww/gnuradio-core/src/lib/general/gr_waveshape_cc.i
   
gnuradio/branches/developers/brickle/neww/gnuradio-core/src/lib/general/gr_waveshape_ff.i
Modified:
   
gnuradio/branches/developers/brickle/neww/gnuradio-core/src/lib/general/Makefile.am
Log:
Add swig files, Makefile.am entries for gr_waveshape blocks.

Modified: 
gnuradio/branches/developers/brickle/neww/gnuradio-core/src/lib/general/Makefile.am
===================================================================
--- 
gnuradio/branches/developers/brickle/neww/gnuradio-core/src/lib/general/Makefile.am
 2008-10-28 19:29:21 UTC (rev 9881)
+++ 
gnuradio/branches/developers/brickle/neww/gnuradio-core/src/lib/general/Makefile.am
 2008-10-28 20:11:49 UTC (rev 9882)
@@ -155,6 +155,8 @@
        gr_vector_to_stream.cc          \
        gr_vector_to_streams.cc         \
        gr_wavelet_ff.cc                \
+       gr_waveshape_ff.cc              \
+       gr_waveshape_cc.cc              \
        gr_wvps_ff.cc                   \
        gri_add_const_ss_generic.cc     \
        gri_char_to_float.cc            \

Added: 
gnuradio/branches/developers/brickle/neww/gnuradio-core/src/lib/general/gr_waveshape_cc.i
===================================================================
--- 
gnuradio/branches/developers/brickle/neww/gnuradio-core/src/lib/general/gr_waveshape_cc.i
                           (rev 0)
+++ 
gnuradio/branches/developers/brickle/neww/gnuradio-core/src/lib/general/gr_waveshape_cc.i
   2008-10-28 20:11:49 UTC (rev 9882)
@@ -0,0 +1,32 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2008 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 this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+GR_SWIG_BLOCK_MAGIC(gr,waveshape_cc);
+
+gr_waveshape_cc_sptr gr_make_waveshape_ff(const std::vector<float> 
&waveshape_real,
+                                          const std::vector<float> 
&waveshape_imag);
+
+class gr_waveshape_cc : public gr_sync_block
+{
+private:
+  gr_waveshape_cc(const std::vector<float> &waveshape_real,
+                  const std::vector<float> &waveshape_imag);
+};

Added: 
gnuradio/branches/developers/brickle/neww/gnuradio-core/src/lib/general/gr_waveshape_ff.i
===================================================================
--- 
gnuradio/branches/developers/brickle/neww/gnuradio-core/src/lib/general/gr_waveshape_ff.i
                           (rev 0)
+++ 
gnuradio/branches/developers/brickle/neww/gnuradio-core/src/lib/general/gr_waveshape_ff.i
   2008-10-28 20:11:49 UTC (rev 9882)
@@ -0,0 +1,30 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2008 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 this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+GR_SWIG_BLOCK_MAGIC(gr,waveshape_ff);
+
+gr_waveshape_ff_sptr gr_make_waveshape_ff(const std::vector<float> &waveshape);
+
+class gr_waveshape_ff : public gr_sync_block
+{
+private:
+  gr_waveshape_ff(const std::vector<float> &waveshape);
+};





reply via email to

[Prev in Thread] Current Thread [Next in Thread]