106class QGPGME_EXPORT DN::Attribute
109 typedef DN::AttributeList List;
111 explicit Attribute(
const QString &name = QString(),
const QString &value = QString())
112 : mName(name.toUpper()), mValue(value) {}
113 Attribute(
const Attribute &other)
114 : mName(other.name()), mValue(other.value()) {}
116 const Attribute &operator=(
const Attribute &other)
118 if (
this != &other) {
119 mName = other.name();
120 mValue = other.value();
125 const QString &name()
const
129 const QString &value()
const
134 void setValue(
const QString &value)