Hello everyone,
i've gone blank atm and i cant think
i have a class
class Client
{
public:
int aa;
int bb;
};
different file
class agent
{
private:
vector<Client> clientRequest;
public:
void getClient();
};
and i get information from a file
infile >> C.aa;
infile.get(c);
infile >> C.bb;
infile.get(c);
how would i concatenate aa and bb into the vector?
clientRequest.push_back(????);