Look at the code:
Code:
class X
{
public:
  int foo(int,int);
  static int bar(/*ARGS*/);  
};
I want the arguments of bar to be one or more function pointers that can only point to foo of any object of class X.
What would be the correct syntax for that ?
Also, what is the typename of a function pointer written as, for ...say...templates ?