it is possible to declare array of function pointer
typedef void (*action_pointers[])();
but how declare array of function by ref? I have use multiple try around below example but not found any solution.
typedef void (&action_pointers[])();
it is possible to declare array of function pointer
typedef void (*action_pointers[])();
but how declare array of function by ref? I have use multiple try around below example but not found any solution.
typedef void (&action_pointers[])();