c++ Programming Glossary: realclass
What is the best way to unit test a protected method in C++? http://stackoverflow.com/questions/1127616/what-is-the-best-way-to-unit-test-a-protected-method-in-c class not even a friend declaration in realclass.h class RealClass protected int foo int a return a 1 in test code #include realclass.h.. a 1 in test code #include realclass.h class Test public RealClass public int wrapfoo int a return foo a void testfoo int input..
Inherit interfaces which share a method name http://stackoverflow.com/questions/2004820/inherit-interfaces-which-share-a-method-name Name 0 class Interface2 public virtual void Name 0 class RealClass public Interface1 public Interface2 public virtual void Interface1.. Name printf Interface2 OK n int main Interface1 p new RealClass p Name Interface2 q reinterpret_cast RealClass p q Name I failed.. p new RealClass p Name Interface2 q reinterpret_cast RealClass p q Name I failed to move the definition out in VC8. I found..
|