1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/* -*- c++ -*- */
/*
* Copyright 2006 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifndef INCLUDED_GR_FEVAL_H
#define INCLUDED_GR_FEVAL_H
#include <gr_complex.h>
/*!
* \brief base class for evaluating a function: double -> double
*
* This class is designed to be subclassed in Python or C++
* and is callable from both places. It uses SWIG's
* "director" feature to implement the magic.
* It's slow. Don't use it in a performance critical path.
*/
class gr_feval_dd
{
public:
gr_feval_dd() {}
virtual ~gr_feval_dd();
/*!
* \brief override this to define the function
*/
virtual double eval(double x);
};
/*!
* \brief base class for evaluating a function: complex -> complex
*
* This class is designed to be subclassed in Python or C++
* and is callable from both places. It uses SWIG's
* "director" feature to implement the magic.
* It's slow. Don't use it in a performance critical path.
*/
class gr_feval_cc
{
public:
gr_feval_cc() {}
virtual ~gr_feval_cc();
/*!
* \brief override this to define the function
*/
virtual gr_complex eval(gr_complex x);
};
/*!
* \brief base class for evaluating a function: long -> long
*
* This class is designed to be subclassed in Python or C++
* and is callable from both places. It uses SWIG's
* "director" feature to implement the magic.
* It's slow. Don't use it in a performance critical path.
*/
class gr_feval_ll
{
public:
gr_feval_ll() {}
virtual ~gr_feval_ll();
/*!
* \brief override this to define the function
*/
virtual long eval(long x);
};
/*!
* \brief base class for evaluating a function: void -> void
*
* This class is designed to be subclassed in Python or C++
* and is callable from both places. It uses SWIG's
* "director" feature to implement the magic.
* It's slow. Don't use it in a performance critical path.
*/
class gr_feval
{
public:
gr_feval() {}
virtual ~gr_feval();
/*!
* \brief override this to define the function
*/
virtual void eval();
};
/*!
* \brief trivial examples / test cases showing C++ calling Python code
*/
double gr_feval_dd_example(gr_feval_dd *f, double x);
gr_complex gr_feval_cc_example(gr_feval_cc *f, gr_complex x);
long gr_feval_ll_example(gr_feval_ll *f, long x);
void gr_feval_example(gr_feval *f);
#endif /* INCLUDED_GR_FEVAL_H */
|