~ubuntu-branches/ubuntu/precise/gnuradio/precise

« back to all changes in this revision

Viewing changes to gnuradio-core/src/lib/general/gr_pwr_squelch_ff.i

  • Committer: Bazaar Package Importer
  • Author(s): Kamal Mostafa
  • Date: 2010-03-13 07:46:01 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100313074601-zjsa893a87bozyh7
Tags: 3.2.2.dfsg-1ubuntu1
* Fix build for Ubuntu lucid (LP: #260406)
  - add binary package dep for libusrp0, libusrp2-0: adduser
  - debian/rules clean: remove pre-built Qt moc files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- c++ -*- */
2
2
/*
3
 
 * Copyright 2006 Free Software Foundation, Inc.
 
3
 * Copyright 2006,2009 Free Software Foundation, Inc.
4
4
 * 
5
5
 * This file is part of GNU Radio
6
6
 * 
22
22
 
23
23
GR_SWIG_BLOCK_MAGIC(gr,pwr_squelch_ff);
24
24
 
25
 
%include gr_squelch_base_ff.i
 
25
// retrieve info on the base class, without generating wrappers since
 
26
// the base class has a pure virual method.
 
27
%import "gr_squelch_base_ff.i"
26
28
 
27
29
gr_pwr_squelch_ff_sptr 
28
30
gr_make_pwr_squelch_ff(double db, double alpha=0.0001, int ramp=0, bool gate=false);