Imported Upstream version 3.2.2
[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   throw (std::runtime_error);
36
37 class gr_hier_block2 : public gr_basic_block
38 {
39 private:
40   gr_hier_block2(const std::string name,
41                  gr_io_signature_sptr input_signature,
42                  gr_io_signature_sptr output_signature);
43   
44 public:
45   ~gr_hier_block2 ();
46   
47   void connect(gr_basic_block_sptr block)
48     throw (std::invalid_argument);
49   void connect(gr_basic_block_sptr src, int src_port,
50                gr_basic_block_sptr dst, int dst_port)
51     throw (std::invalid_argument);
52   void disconnect(gr_basic_block_sptr block)
53     throw (std::invalid_argument);
54   void disconnect(gr_basic_block_sptr src, int src_port,
55                   gr_basic_block_sptr dst, int dst_port)
56     throw (std::invalid_argument);
57   void disconnect_all();
58   void lock();
59   void unlock();
60 };