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
Is there a way to get the compiler to show me methods in the interface which I forgot to implement?
thanks
Bryan