I just started making constructors for my class and for some reason, my class keeps giving me the following errors:
-expected a class or namespace
-expected unqualified-id
cVector::Vector<T>(){ //line 4: typo `cVector'
Vector::Vector<T>(int n, const T& val){ //line 9: should be Vector<T>::Vector
Vector::~Vector(){ //line 21: Vector is a template
In Vector.hT arr[]; //line 7: that's illegal, you must especify the size of the array