Hi =D, i want to make a list of lists that contain structures, like this:
Now i want a list of "listLetters", i tried this:Code:typedef struct{ char AAAA[20+1]; char BBBB[40+1]; char CCCC[60+1]; } Letters; typedef std::list<Letters> listLetters; typedef std::list<Letters>::iterator IteratorListLetters;
but it results on some warnings...Code:std::list<listLetters> ListofListLetters;
Anyone can tell me the right way to do this? i really have to make a list of lists of struct.



1Likes
LinkBack URL
About LinkBacks



