Hi,

It is possible to use this data structure:

Qt Code:
  1. struct Data{
  2. QString scope;
  3. QString name;
  4. QVariant value;
  5. };
  6.  
  7. QHash<QString, QHash<QString, Data>> data;
To copy to clipboard, switch view to plain text mode 

in range for loop like that:

Qt Code:
  1. for( const Data & d : data )
  2. qDebug()<< d.scope << d.name << d.value;
To copy to clipboard, switch view to plain text mode