I have the following as an Stl algorithm/vector:
MyClass <int> VecOfInts("A vector of integers");
VecOfInts.push_back(3)
VecOfInts.push_back(2)
VecOfInts.push_back(1)
I was able to get the numbers to display with a for loop (i < VecOfInts <size; i++).
Now my question is: how would I get "A Vector of integers", to display, irregardless of the instance.