fka mod
Fork of BLE_API by
Diff: ble/FunctionPointerWithContext.h
- Revision:
- 919:c5b9fac295f5
- Parent:
- 918:2b12b53101ea
- Child:
- 920:d18cff0c4b09
diff -r 2b12b53101ea -r c5b9fac295f5 ble/FunctionPointerWithContext.h --- a/ble/FunctionPointerWithContext.h Thu Nov 26 12:52:04 2015 +0000 +++ b/ble/FunctionPointerWithContext.h Thu Nov 26 12:52:04 2015 +0000 @@ -94,6 +94,13 @@ } } + /** + * @brief Same as above + */ + void operator()(ContextType context) const { + call(context); + } + /** Same as above, workaround for mbed os FunctionPointer implementation. */ void call(ContextType context) { _caller(this, context);