If I have
template<class T> class Vector
public:
Vector(const Vector& bla);
How can I use it outside the .h file?
I´ve tried Vector<T>::Vector
but that doesn´t work.
some part of the .h file
Vector();
Vector(int size, T value = T());
Vector(const Vector& vec);
~Vector();
T at(int index) const;
void set_value_at(int index, T elem) const;
); //Here is the code in same .h file but outside the class
Vector();
Vector(int size, T value = T())
{}
Vector(const Vector& vec){}
~Vector(){}
T at(int index) const{}
void set_value_at(int index, T elem) const{}