SWIG compilation speedup! Fixes ticket:9.
[debian/gnuradio] / gnuradio-core / src / lib / swig / gnuradio.i
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2003,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 ////////////////////////////////////////////////////////////////////////
24 // gnuradio.i
25 // SWIG interface definition
26 ////////////////////////////////////////////////////////////////////////
27
28
29 #ifndef SWIGIMPORTED
30 %module(directors="1") gnuradio_swig_py_runtime
31 #endif
32
33 ////////////////////////////////////////////////////////////////////////
34 // Headers
35
36
37 %{
38 #include <gr_types.h>
39 #include <stddef.h>             // size_t
40 %}
41
42 %feature("autodoc","1");
43
44 %include <shared_ptr.i>
45 %include <stl.i>
46 %include <std_complex.i>
47
48
49 typedef std::complex<float>             gr_complex;
50 typedef std::complex<double>            gr_complexd;
51
52
53 // instantiate the required template specializations
54
55 namespace std {
56   %template()     vector<unsigned char>;
57   %template()     vector<char>;
58   %template()     vector<short>;
59   %template()     vector<int>;
60   %template()     vector<float>;
61   %template()     vector<double>;
62   %template()     vector<std::complex<float> >;
63 };
64
65 ////////////////////////////////////////////////////////////////////////
66
67 %constant int sizeof_char       = sizeof(char);
68 %constant int sizeof_short      = sizeof(short);
69 %constant int sizeof_int        = sizeof(int);
70 %constant int sizeof_float      = sizeof(float);
71 %constant int sizeof_double     = sizeof(double);
72 %constant int sizeof_gr_complex = sizeof(gr_complex);
73
74 ////////////////////////////////////////////////////////////////////////
75
76 %include <runtime.i>
77  // %include <general.i>
78  // %include <filter.i>
79  // %include <io.i>
80
81 // %include <atsc.i>
82
83 ////////////////////////////////////////////////////////////////////////