Hi,
I am attempting to use Boost bind and function to help me pass a member
function as a function pointer to the GLUT C-library.
I have difficulty understanding the usage of bind and function in the
Boost library. When I attempt to pass what I thought was a function pointer,
the compiler indicated that it is actually not a function pointer.
class MyGlut {
public:
MyGlut();
virtual ~MyGlut();
void loop(int argc, char **argv);
void draw(void);
void displayFunc(boost::function