Imported Upstream version 3.0
[debian/gnuradio] / gnuradio-core / src / lib / general / gr_feval.i
1 /* -*- c++ -*- */
2 /*
3  * Copyright 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 // Enable SWIG directors for these classes
24 %feature("director") gr_feval_dd;
25 %feature("director") gr_feval_cc;
26 %feature("director") gr_feval_ll;
27
28
29 %rename(feval_dd) gr_feval_dd;
30 class gr_feval_dd
31 {
32 public:
33   gr_feval_dd() {}
34   virtual ~gr_feval_dd();
35
36   virtual double eval(double x);
37 };
38
39 %rename(feval_cc) gr_feval_cc;
40 class gr_feval_cc
41 {
42 public:
43   gr_feval_cc() {}
44   virtual ~gr_feval_cc();
45
46   virtual gr_complex eval(gr_complex x);
47 };
48
49 %rename(feval_ll) gr_feval_ll;
50 class gr_feval_ll
51 {
52 public:
53   gr_feval_ll() {}
54   virtual ~gr_feval_ll();
55
56   virtual long eval(long x);
57 };
58
59
60 // examples / test cases
61
62 %rename(feval_dd_example) gr_feval_dd_example;
63 double gr_feval_dd_example(gr_feval_dd *f, double x);
64
65 %rename(feval_cc_example) gr_feval_cc_example;
66 gr_complex gr_feval_cc_example(gr_feval_cc *f, gr_complex x);
67
68 %rename(feval_ll_example) gr_feval_ll_example;
69 long gr_feval_ll_example(gr_feval_ll *f, long x);