Public Member Functions | |
| CallbackStorage () | |
| Default constructor. | |
| void | insert (function< void(const double &) > func) |
| Inserts a callback function into a list of callbacks. | |
| void | operator() (const double &val) |
| Calls all the stored callbacks passing the given value. | |
| void | insert (double &Ref) |
| Generates a suitable callback function and stores it in the list of callbacks. Actually makes an assignment to the given reference. | |
Public Attributes | |
|
vector< function< void(const double &) > | v ) |
| Actual storage of the callbacks. | |
Definition at line 49 of file LambdaVector.cpp.
|
|
Generates a suitable callback function and stores it in the list of callbacks. Actually makes an assignment to the given reference.
Definition at line 85 of file LambdaVector.cpp. Here is the call graph for this function: ![]() |
|
|
Inserts a callback function into a list of callbacks.
Definition at line 61 of file LambdaVector.cpp. References v. Referenced by main(). |
|
|
Calls all the stored callbacks passing the given value.
Definition at line 70 of file LambdaVector.cpp. References v. |
1.4.4