I\'m trying to use a class function (interrupt service routine),
void (ClassName::*fp)(void)=ClassName::FunctionName;
and attaching it to a
Each class member function has an implicit first parameter that is the this pointer, so your method in fact is not with void paramter list - it takes one parameter-- the instance it is invoked on.
this