Updated license from GPL version 2 or later to GPL version 3 or later.
[debian/gnuradio] / gnuradio-core / src / lib / runtime / gr_hier_block2.i
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2005,2006,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 %include <gr_basic_block.i>
24
25 class gr_hier_block2;
26 typedef boost::shared_ptr<gr_hier_block2> gr_hier_block2_sptr;
27 %template(gr_hier_block2_sptr) boost::shared_ptr<gr_hier_block2>;
28
29 // Hack to have a Python shim implementation of gr.hier_block2
30 // that instantiates one of these and passes through calls
31 %rename(hier_block2_swig) gr_make_hier_block2;
32 gr_hier_block2_sptr gr_make_hier_block2(const std::string name,
33                                         gr_io_signature_sptr input_signature,
34                                         gr_io_signature_sptr output_signature);
35
36 class gr_hier_block2 : public gr_basic_block
37 {
38 private:
39     gr_hier_block2(const std::string name,
40                    gr_io_signature_sptr input_signature,
41                    gr_io_signature_sptr output_signature);
42
43 public:
44     ~gr_hier_block2 ();
45
46     // Add a named block to the container
47     void connect(gr_basic_block_sptr src, int src_port,
48                  gr_basic_block_sptr dst, int dst_port)
49         throw (std::invalid_argument);
50     void disconnect(gr_basic_block_sptr src, int src_port,
51                     gr_basic_block_sptr dst, int dst_port)
52         throw (std::invalid_argument);
53     void lock();
54     void unlock();
55 };