Source Code (Use browser search to find items of interest.)

Class Index

kdelibs'KEntryKey (./kdelibs/kdecore/kconfigdata.h:49)

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
 */