struct KEntryKey
{
KEntryKey(const QString& _group = QString::null,
const QString _key = QString::null)
: group(_group), key(_key) {}
QString group; // the "group" to which this EntryKey belongs
QString key; // the _actual_ key of the entry in question
struct KEntryKeyPrivate;
KEntryKeyPrivate *d;
};
/**
* compares two KEntryKeys (needed for QMap).
* @internal
*/