GNU Radio 3.5.1 C++ API
|
base class for evaluating a function: long -> longThis 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. More...
#include <gr_feval.h>
Public Member Functions | |
gr_feval_ll () | |
virtual | ~gr_feval_ll () |
virtual long | calleval (long x) |
Protected Member Functions | |
virtual long | eval (long x) |
override this to define the function |
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.
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_ll::gr_feval_ll | ( | ) | [inline] |
virtual gr_feval_ll::~gr_feval_ll | ( | ) | [virtual] |
virtual long gr_feval_ll::calleval | ( | long | x | ) | [virtual] |
virtual long gr_feval_ll::eval | ( | long | x | ) | [protected, virtual] |
override this to define the function