Des ensembles : tableaux et listes.
main ()
{
std::list<Point> points;

Point p;

p.x = 10;
p.y = 12;

points.push_back (p);

p.x = 11;
p.y = 13;

points.push_back (p);
}