I want to add an additional conversion operator to a specialization of a template
-can a spelcialization inherit all methods from its main template ?
template<class T>
MyClass
{
public:
operator Foo() { return(getAFoo()); }
};
template<>
MyClass<Bar>
{
public:
// desire to ADD a method to a specialization yet inherit
// all methods from the main template it specializes ???
operator Bar() { return(getABar()); }
};