/*############################################################################# ## Author: Shaun Reed ## ## Legal: All Content (c) 2020 Shaun Reed, all rights reserved ## ## About: An example of a vector implementation using templates ## ## ## ## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ## ############################################################################## ## vector.h */ #ifndef VECTOR_H #define VECTOR_H #include #include template class Vector { public: Vector() : maxSize(0), curIndex(-1), data(NULL) {}; Vector(const Vector& rhs); Vector operator=(Vector rhs); ~Vector(); bool push(T val); T pop(); void makeEmpty(); T peek() const; bool isEmpty() const; bool isFull() const; void print() const; int getMax() const; int getSize() const; int getIndex() const; T getValue(int index) const; private: int maxSize; int curIndex; T *data; bool push(T val, T *&data); T pop(T *&data); void makeEmpty(T *&data); T peek(T *data) const; void print(T *data) const; }; #endif