Inheritance code generator?

Hello,

Is there a c++ programming tool that can generate a derived class from a base class? The input would be the .h and .cpp files of the base class and it would output derived class.

Thanks,

-diesel

Why would you need it ?

It is asking too much to type -

class CInherit : CBase
{
}

Duane B