Interface implemenation compiler error

bwells

Well-known member
Joined
Feb 25, 2003
Messages
84
I have written a C++ class which implements an interface. The problem is I do not know how to find out what methods on the interface are not implemented until runtime. And even then, I get a generic error message saying the class is abstract and cannot be instatiated.

Is there a way to get the compiler to show me methods in the interface which I forgot to implement?

thanks
Bryan
 
Back
Top