J
Jason Heyes
How can I define the member function of this template class using VC++ 6.0?
The only way I got it to work was to define the member function inline.
template <typename T>
class Seq
{
public:
template <typename Pred>
Seq<T> find(Pred pred) const;
};
Any help is appreciated.
The only way I got it to work was to define the member function inline.
template <typename T>
class Seq
{
public:
template <typename Pred>
Seq<T> find(Pred pred) const;
};
Any help is appreciated.