So ive got a Qvector which contains objects of a 'contact' class....the contact class so far looks like this:
class contact {
QString firstName;
QString lastName;
QString email;
QString age;
QString imgSrc;
public:
contact();
contact(QString fName, QString lname, QString emailAdd, QString new_Age, QString img);
QString getPerson(); // return "James Smith 34" which i add to listwidget
};
Thats very trivial, the problem ive come across is whats the most effective way for me to display this data in a list format, i.e
Adam Smith 34
John Smith 43
Should i use a basic list widget ?? ( considering i have to sort the information into accesnding and descending orders...
or do i use list view ?? but which model ??