Imported Upstream version 3.0.4
[debian/gnuradio] / gr-audio-portaudio / src / audio_portaudio.i
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2004 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 %feature("autodoc","1");
24
25 %include "exception.i"
26 %import "gnuradio.i"                            // the common stuff
27
28 %{
29 #include "gnuradio_swig_bug_workaround.h"       // mandatory bug fix
30 #include "audio_portaudio_sink.h"
31 #include "audio_portaudio_source.h"
32 #include <stdexcept>
33 %}
34
35 // ----------------------------------------------------------------
36
37 GR_SWIG_BLOCK_MAGIC(audio_portaudio,source)
38
39 audio_portaudio_source_sptr
40 audio_portaudio_make_source (int sampling_rate,
41                              const std::string dev = "",
42                              bool ok_to_block = true
43                              ) throw (std::runtime_error);
44
45 class audio_portaudio_source : public gr_sync_block {
46
47  protected:
48   audio_portaudio_source (int sampling_rate,
49                           const std::string device_name,
50                           bool ok_to_block
51                           ) throw (std::runtime_error);
52
53  public:
54   ~audio_portaudio_source ();
55 };
56
57 // ----------------------------------------------------------------
58
59 GR_SWIG_BLOCK_MAGIC(audio_portaudio,sink)
60
61 audio_portaudio_sink_sptr
62 audio_portaudio_make_sink (int sampling_rate,
63                            const std::string dev = "",
64                            bool ok_to_block = true
65                            ) throw (std::runtime_error);
66
67 class audio_portaudio_sink : public gr_sync_block {
68
69  protected:
70   audio_portaudio_sink (int sampling_rate,
71                         const std::string device_name,
72                         bool ok_to_block
73                         ) throw (std::runtime_error);
74
75  public:
76   ~audio_portaudio_sink ();
77 };