diff options
author | Johnathan Corgan | 2012-04-04 10:03:38 -0700 |
---|---|---|
committer | Johnathan Corgan | 2012-04-04 11:05:46 -0700 |
commit | a87ac60f15c2593ececb02ba16ab842c20e760d2 (patch) | |
tree | a08ec8da7da669c3356ea9a9dc03e88f3d3a5292 /gr-fcd/swig/fcd_source_c.i | |
parent | fc03a9b18ca874cac546b7a414089d3649dce48d (diff) | |
download | gnuradio-a87ac60f15c2593ececb02ba16ab842c20e760d2.tar.gz gnuradio-a87ac60f15c2593ececb02ba16ab842c20e760d2.tar.bz2 gnuradio-a87ac60f15c2593ececb02ba16ab842c20e760d2.zip |
fcd: simplify swig generation after virtual interface class change
Diffstat (limited to 'gr-fcd/swig/fcd_source_c.i')
-rw-r--r-- | gr-fcd/swig/fcd_source_c.i | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/gr-fcd/swig/fcd_source_c.i b/gr-fcd/swig/fcd_source_c.i deleted file mode 100644 index 77fcf8a42..000000000 --- a/gr-fcd/swig/fcd_source_c.i +++ /dev/null @@ -1,22 +0,0 @@ -/* - * First arg is the package prefix. - * Second arg is the name of the class minus the prefix. - * - * This does some behind-the-scenes magic so we can - * access fcd_source_c from python as fcd.source_c - */ -GR_SWIG_BLOCK_MAGIC(fcd,source_c); - -fcd_source_c_sptr fcd_make_source_c (const std::string device_name = ""); - -class fcd_source_c : public gr_hier_block2 -{ -public: - void set_freq(float freq); - void set_freq_khz(int freq); - void set_lna_gain(float gain); - void set_mixer_gain(float gain); - void set_freq_corr(int ppm); - void set_dc_corr(double dci, double dcq); - void set_iq_corr(double gain, double phase); -}; |