S
SpreadTooThin
I need a queue of two std::strings....
should i define a class
myClass
{
public:
std::string a;
std::string b;
};
std::queue<myClass> q;
?
I'm worried about deep copies and memory leeks....
should i define a class
myClass
{
public:
std::string a;
std::string b;
};
std::queue<myClass> q;
?
I'm worried about deep copies and memory leeks....