D
DaTurk
Hi, I'm trying to hold a map of ints,and function pointers in C++
map<int, (*functPtr)(int, int)> something
I need to hold a list of callbacks. For some reason this syntax is
not working. Any ideas?
map<int, (*functPtr)(int, int)> something
I need to hold a list of callbacks. For some reason this syntax is
not working. Any ideas?