Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-core / src / lib / runtime / gr_io_signature.i
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2004,2005,2007 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 class gr_io_signature;
24 typedef boost::shared_ptr<gr_io_signature>  gr_io_signature_sptr;
25 %template(gr_io_signature_sptr) boost::shared_ptr<gr_io_signature>;
26
27 %rename(io_signature)  gr_make_io_signature;
28 %rename(io_signature2) gr_make_io_signature2;
29 %rename(io_signature3) gr_make_io_signature3;
30 %rename(io_signaturev) gr_make_io_signaturev;
31
32
33 gr_io_signature_sptr
34 gr_make_io_signature(int min_streams, int max_streams,
35                      int sizeof_stream_item);
36
37 gr_io_signature_sptr
38 gr_make_io_signature2(int min_streams, int max_streams,
39                       int sizeof_stream_item1,
40                       int sizeof_stream_item2
41                       );
42 gr_io_signature_sptr
43 gr_make_io_signature3(int min_streams, int max_streams, 
44                       int sizeof_stream_item1,
45                       int sizeof_stream_item2,
46                       int sizeof_stream_item3
47                       );
48 gr_io_signature_sptr
49 gr_make_io_signaturev(int min_streams, int max_streams,
50                       const std::vector<int> &sizeof_stream_items);
51
52
53 class gr_io_signature {
54   gr_io_signature (int min_streams, int max_streams, int sizeof_stream_item);
55
56   friend gr_io_signature_sptr 
57   gr_make_io_signaturev(int min_streams,
58                         int max_streams,
59                         const std::vector<int> &sizeof_stream_item);
60
61  public:
62
63   // disabled. Suspected bug in SWIG 1.3.24
64   // static const int IO_INFINITE = -1;
65     
66   ~gr_io_signature ();
67     
68   int min_streams () const { return d_min_streams; }
69   int max_streams () const { return d_max_streams; }
70   int sizeof_stream_item (int index) const;
71   std::vector<int> sizeof_stream_items() const;
72 };
73