Imported Upstream version 3.0
[debian/gnuradio] / gr-audio-oss / src / audio_oss.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 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_oss_sink.h"
31 #include "audio_oss_source.h"
32 #include <stdexcept>
33 %}
34
35 // ----------------------------------------------------------------
36
37 GR_SWIG_BLOCK_MAGIC(audio_oss,sink)
38
39 audio_oss_sink_sptr
40 audio_oss_make_sink (int sampling_rate,
41                      const std::string dev = "",
42                      bool ok_to_block = true
43                      ) throw (std::runtime_error);
44
45
46 class audio_oss_sink : public gr_sync_block {
47  protected:
48   audio_oss_sink (int sampling_rate, const std::string device_name = "", bool ok_to_block = true);
49
50  public:
51   ~audio_oss_sink ();
52 };
53
54 // ----------------------------------------------------------------
55
56 GR_SWIG_BLOCK_MAGIC(audio_oss,source)
57
58 audio_oss_source_sptr
59 audio_oss_make_source (int sampling_rate,
60                        const std::string dev = "",
61                        bool ok_to_block = true
62                        ) throw (std::runtime_error);
63
64 class audio_oss_source : public gr_sync_block {
65  protected:
66   audio_oss_source (int sampling_rate, const std::string device_name = "", bool ok_to_block = true);
67
68  public:
69   ~audio_oss_source ();
70 };