I want to store several structs in a vector, but the struct has a template so I get a compile error, how can I store the structs in the vector?
Example:
template<class First, class Second> struct foo
{
First f;
Second s;
};
std::vector<foo> bar; //error!