A
antani
template <typename T>
class tt
{
vector<T> vect;
inline void add(const T & t);
}
Can I define the member function "inline void add(const T & t)"
outside the class interface in the header file?How?
Thanks in advance.
class tt
{
vector<T> vect;
inline void add(const T & t);
}
Can I define the member function "inline void add(const T & t)"
outside the class interface in the header file?How?
Thanks in advance.