I need to understand the line that starts with 'vector' below to translate into different language. I don't understand the descriptions I have found online.
C:
struct point
{
double x,y;
};
struct path
{
point coord;
vector <string>pathList;
};