Today I have uncovered that QStringList do not have type and is not
possibel to return

Qt Code:
  1. QStringList Href_Gui::GetUserConfig();
  2. {
  3. return this->hrefconfisuser;
  4. }
To copy to clipboard, switch view to plain text mode 

And to solved this i make ...
Qt Code:
  1. typedef QMap<int, QStringList> Userconf;
  2.  
  3. Userconf res;
  4. res.insert(0,MyOwnQStringList);
  5. if moore .... res.insert(1,MyOwnQStringList);
  6.  
  7. Userconf res = function();
  8.  
  9. resultMap::Iterator it;
  10. for ( it = res.begin(); it != res.end(); ++it ) {
  11. QStringList fullrow = it.value();
  12. }
To copy to clipboard, switch view to plain text mode 

My question how to set a typedef QStringList
and not waste performance? .