cdb77aee047f0c99ef898a6e37954dfc51cbd80c
[debian/gnuradio] / gr-comedi / src / comedi.i
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2005,2009 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 "gnuradio.i"                           // the common stuff
24
25 %{
26 #include "comedi_sink_s.h"
27 #include "comedi_source_s.h"
28 %}
29
30 // ----------------------------------------------------------------
31
32 GR_SWIG_BLOCK_MAGIC(comedi,source_s)
33
34 comedi_source_s_sptr
35 comedi_make_source_s (int sampling_freq,
36                         const std::string dev = ""
37                         ) throw (std::runtime_error);
38
39 class comedi_source_s : public gr_sync_block {
40
41  protected:
42   comedi_source_s (int sampling_freq,
43                      const std::string device_name
44                      ) throw (std::runtime_error);
45
46  public:
47   ~comedi_source_s ();
48
49   bool start();
50   bool stop();
51 };
52
53 // ----------------------------------------------------------------
54
55 GR_SWIG_BLOCK_MAGIC(comedi,sink_s)
56
57 comedi_sink_s_sptr
58 comedi_make_sink_s (int sampling_freq,
59                       const std::string dev = ""
60                       ) throw (std::runtime_error);
61
62 class comedi_sink_s : public gr_sync_block {
63
64  protected:
65   comedi_sink_s (int sampling_freq,
66                    const std::string device_name
67                    ) throw (std::runtime_error);
68
69  public:
70   ~comedi_sink_s ();
71 };