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

« back to all changes in this revision

Viewing changes to gnuradio-core/src/lib/general/gr_skiphead.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 2005 Free Software Foundation, Inc.
 
3
 * Copyright 2005,2007 Free Software Foundation, Inc.
4
4
 * 
5
5
 * This file is part of GNU Radio
6
6
 * 
20
20
 * Boston, MA 02110-1301, USA.
21
21
 */
22
22
 
23
 
%ignore gr_skiphead;
 
23
GR_SWIG_BLOCK_MAGIC(gr,skiphead);
 
24
 
 
25
gr_skiphead_sptr gr_make_skiphead (size_t itemsize, size_t nitems_to_skip);
 
26
 
24
27
class gr_skiphead : public gr_block {
25
 
  friend gr_block_sptr gr_make_skiphead (size_t sizeof_stream_item, int nitems);
26
 
  gr_skiphead (size_t sizeof_stream_item, int nitems);
 
28
  friend gr_skiphead_sptr gr_make_skiphead (size_t itemsize, size_t nitems_to_skip);
 
29
  gr_skiphead (size_t itemsize, size_t nitems_to_skip);
27
30
};
28
 
 
29
 
%rename(skiphead) gr_make_skiphead;
30
 
gr_block_sptr gr_make_skiphead (size_t sizeof_stream_item, int nitems);