Hi I'm still wondering why I'm getting this error message :
Use of class template 'Array' requires template arguments
Header :
#ifndef Array_h
#define Array_h
template< typename T>
class Array
{
public:
    Array(int = 5);
    Array( const Array &);
    const Array &operator=(Array &);
    T &operator[](int);
    T operator[](int) const;
    // getters and setters
    int getSize() const;
    void setSize(int);
    ~Array();
private:
    int size;
    T *ptr;
    bool checkRange(int);
};
#endif
CPP file
template< typename T >
const Array &Array< T >::operator=(Array &other)
{
    if( &other != this)
    {
        if( other.getSize != this->size)
        {
            delete [] ptr;
            size = other.getSize;
            ptr = new T[size];
        }
        for ( int i = 0; i < size; i++)
        {
            ptr[i] = other[i];
        }
    }
    return *this;
}
Problem seems to do with returning a const reference to object.
Thanks.
 
     
    