One feature I have always like in Netbeans/Eclipse is the implement interface feature.
This could be a part of the drop downlist on a class (currently it gives Add Member, Rename and Find References).
This would be a great timesaver.
Code below to describe the idea further.
Thanks Graham Reeds
class Base
{
virtual int InterfaceMarlarky() = 0;
}
/* placing mouse over Derived will give the option to implement the interface given in Base */
class Derived : public Base
{
}