How can i call class function with its name in c++
Problem: I have to call functions with its callee names in class. I tried function-pointer with map by return the pointer of functions in class, but it seemed that compiler doesn’t allow me to do that with the error ‘&’: illegal operation on bound member function expression I want to create a class with function… Read More How can i call class function with its name in c++