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

Point p;

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

points.push_back (p);
}