/* Grant Chen Due: 10/30/08 CS213 Student ID 908306235 Compiler: Dev-C++ Exercise 6 part 2 main Define a VectorDouble class that's like a class for a vector of type double. It will have a private member variable for a dynamic array of doubles It will have two member variables of int. One called maxCount for size of dynamic array of doubles, and one called count for the number of array positions currently holding these values. (maxCount is the capacity of the vector, count is the size of the vector). If you try to add an element to the vector object of class VectorDouble and there is no more room, a new dynamic array with twice hte capacity of the old dynamic array is created and the values of the old dynamic array are copied to the new one. */ #include #include "asgn6p2.h" using namespace std; int main() { return 0; }