It would be great if the Implement virtual method suggestion would consider all base classes and not stop searching at the first level: class PrivateVirtual { virtual void _f() = 0; };
class B: public PrivateVirtual { virtual void g() = 0; };
class A: public B {
};
When I right-click on a and select "Implement virtual methods ...", only g() is suggested, but I must also implement f().