I have declared a 2D vector that look like this.
Now I need to have a 3D vector but dont know how you declare a 3D vector.
As seen I have put 500 as a value for 1D.
Then I push_back the 2D and I also will push_back the 3:rd dimension.
Thanks in advance!
std::vector<std::vector<string> > TwoDimensions(500, std::vector<string>());