K
kasthurirangan.balaji
Hello,
template<class Base>
class Derived : public Base
{
};
By using template, i understand the actual base type will be deduced
at compile time. Moreover, class Derived will consist only of
functions which inturn call functions of the base type. Also, i would
like to hear comments about this kind of design.
Thanks,
Balaji.
template<class Base>
class Derived : public Base
{
};
By using template, i understand the actual base type will be deduced
at compile time. Moreover, class Derived will consist only of
functions which inturn call functions of the base type. Also, i would
like to hear comments about this kind of design.
Thanks,
Balaji.