#include #include using namespace std; class Vector { int *array; int size; public: Vector(int length=0); ~Vector(); };