Imported Upstream version 3.0
[debian/gnuradio] / gr-audio-alsa / src / audio_alsa.i
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2004,2006 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 2, 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_alsa_sink.h"
31 #include "audio_alsa_source.h"
32 #include <stdexcept>
33 %}
34
35 // ----------------------------------------------------------------
36
37 GR_SWIG_BLOCK_MAGIC(audio_alsa,source)
38
39 audio_alsa_source_sptr
40 audio_alsa_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_alsa_source : public gr_sync_block {
46
47  protected:
48   audio_alsa_source (int sampling_rate,
49                      const std::string device_name,
50                      bool ok_to_block = true
51                      ) throw (std::runtime_error);
52
53  public:
54   ~audio_alsa_source ();
55
56   bool start();
57   bool stop();
58 };
59
60 // ----------------------------------------------------------------
61
62 GR_SWIG_BLOCK_MAGIC(audio_alsa,sink)
63
64 audio_alsa_sink_sptr
65 audio_alsa_make_sink (int sampling_rate,
66                       const std::string dev = "",
67                       bool ok_to_block = true
68                       ) throw (std::runtime_error);
69
70 class audio_alsa_sink : public gr_sync_block {
71
72  protected:
73   audio_alsa_sink (int sampling_rate,
74                    const std::string device_name,
75                    bool ok_to_block
76                    ) throw (std::runtime_error);
77
78  public:
79   ~audio_alsa_sink ();
80 };