Merge r6461:6464 from jcorgan/t162-staging into trunk.
[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   void connect(gr_basic_block_sptr block)
47     throw (std::invalid_argument);
48   void connect(gr_basic_block_sptr src, int src_port,
49                gr_basic_block_sptr dst, int dst_port)
50     throw (std::invalid_argument);
51   void disconnect(gr_basic_block_sptr block)
52     throw (std::invalid_argument);
53   void disconnect(gr_basic_block_sptr src, int src_port,
54                   gr_basic_block_sptr dst, int dst_port)
55     throw (std::invalid_argument);
56   void disconnect_all();
57   void lock();
58   void unlock();
59 };