I want to create a vector of elements representing a certain structure.
The thing is that I don't know how many elements the structure will have, since the number will change very often, and I don't really know how to create a vector.
How to make that?
In order to make it more clear:
I saw that when creating a vector, you do something like this:
std::vector<structureType> vectorName(nrOfElements);
I don't know the number of elements and what to write there, between brackets.