21 class ReaderManagerPlugInInfo
31 bool pEnabled =
false,
32 bool pAvailable =
false);
34 const ReaderManagerPlugInType& getPlugInType()
const
40 bool hasValue(Key pKey)
42 return mValues.contains(pKey);
46 QVariant getValue(Key pKey)
const
48 return mValues.value(pKey);
52 void setValue(Key pKey,
const QVariant& pValue)
54 mValues.insert(pKey, pValue);
61 bool isEnabled()
const
67 void setEnabled(
bool pEnabled)
76 bool isAvailable()
const
82 void setAvailable(
bool pAvailable)
84 mAvailable = pAvailable;
88 bool isResponding()
const
94 void setResponding(
bool pResponding)
96 mResponding = pResponding;
100 ReaderManagerPlugInType mType;
101 QMap<Key, QVariant> mValues;