GNU Radio 3.7.1 C++ API
|
base class for evaluating a function: complex -> complexThis 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. More...
#include <feval.h>
Public Member Functions | |
feval_cc () | |
virtual | ~feval_cc () |
virtual gr_complex | calleval (gr_complex x) |
Protected Member Functions | |
virtual gr_complex | eval (gr_complex x) |
override this to define the function |
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.
Override eval to define the behavior. Use calleval to invoke eval (this kludge is required to allow a python specific "shim" to be inserted.
gr::feval_cc::feval_cc | ( | ) | [inline] |
virtual gr::feval_cc::~feval_cc | ( | ) | [virtual] |
virtual gr_complex gr::feval_cc::calleval | ( | gr_complex | x | ) | [virtual] |
Reimplemented in gr::py_feval_cc.
virtual gr_complex gr::feval_cc::eval | ( | gr_complex | x | ) | [protected, virtual] |
override this to define the function