Is there a way in C++ to effectively create a closure which will be a function pointer? I am using the Gnu Scientific Library and I have to create a gsl_function. This funct
Take a look at this simple example of combining boost::bind and boost::function.