J
Jeff Flinn
Is this allowed:
struct A{};
struct B{};
class C
{
public:
template< class T > C( int aInt, const T& );
template<> C<A>( int a Int, const A& ){}
template<> C<B>( int a Int, const B& ){}
};
Thanks, Jeff
struct A{};
struct B{};
class C
{
public:
template< class T > C( int aInt, const T& );
template<> C<A>( int a Int, const A& ){}
template<> C<B>( int a Int, const B& ){}
};
Thanks, Jeff