Merged r6171:6186 from jcorgan/fg into trunk.
[debian/gnuradio] / gnuradio-core / src / lib / runtime / gr_top_block.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 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 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <gr_top_block.h>
28 #include <gr_top_block_impl.h>
29 #include <gr_io_signature.h>
30 #include <iostream>
31
32 gr_top_block_sptr 
33 gr_make_top_block(const std::string &name)
34 {
35   return gr_top_block_sptr(new gr_top_block(name));
36 }
37
38 gr_top_block::gr_top_block(const std::string &name)
39   : gr_hier_block2(name, 
40                    gr_make_io_signature(0,0,0), 
41                    gr_make_io_signature(0,0,0))
42   
43 {
44   d_impl = new gr_top_block_impl(this);
45 }
46   
47 gr_top_block::~gr_top_block()
48 {
49   delete d_impl;
50 }
51
52 void 
53 gr_top_block::start()
54 {
55   d_impl->start();
56 }
57
58 void 
59 gr_top_block::stop()
60 {
61   d_impl->stop();
62 }
63
64 void 
65 gr_top_block::wait()
66 {
67   d_impl->wait();
68 }
69
70 void 
71 gr_top_block::run()
72 {
73   start();
74   wait();
75 }
76
77 void
78 gr_top_block::lock()
79 {
80   d_impl->lock();
81 }
82
83 void
84 gr_top_block::unlock()
85 {
86   d_impl->unlock();
87 }