Hi guys,
I have list of class contain list of another class.
MyMessages class
{
ID
list <myPackets> Packets;
}
myPackets class
{
Seq
Text
}
I need advice which one is the right way to set myMessages class??
void set_myMessages(const int &ID, list <myPackets> Packets)
OR
void set_myMessages(const string &ID, string Seq, string Text)
and also I need advice how to make a list of class.
atm I use,
list <myPackets> listPackets;
myPackets Packets;
Packets.set(seq,text);
listPackets.push_back(Packets);
Packets.set(seq,text);
listPackets.push_back(Packets);
It does work but, I couldn't print the listPackets using iterator?
so How do I print my list??? Also I need to sort list of my Packets, but
my list of packet contain 2 element seq and text, so I couldn't use sort() funtion, so any Idea how I sorting the data??
Thank You So Much