How can I push_back a struct into a vector?
push_back
struct
struct point { int x; int y; }; std::vector a; a.push_back( ???
point foo; //initialize with whatever a.push_back(foo);