I don't know, if I understood you correctly. However, the following code will extract the variant at position index from your vector and return its value as a const-reference to T. If the variant does not store a T, you still have to return a T. Thus, you need some default value, which you can return in this case.
template <typename T>
const T& value(int index)
{
// Some value to return, if the variant does not store a T.
static T defaultValue;
const QVariant& variant = m_d.at(index);
// If the variant stores a T, return it.
if (variant.userType() == qMetaTypeId<T>())
return *reinterpret_cast<const T*>(variant.constData());
// Return the default value. Or add an assertion here. Or throw
// an exception etc.
return defaultValue;
}
This simple test case
m_d.push_back(10);
m_d.push_back(QString("Hello"));
m_d.push_back(3.14);
// This returns what is stored in the vector.
qDebug() << value<int>(0);
qDebug() << value<QString>(1);
qDebug() << value<double>(2);
// This returns the default value.
qDebug() << value<int>(1);
qDebug() << value<QString>(2);
qDebug() << value<double>(0);
produces the following output
10
"Hello"
3.14
0
""
0
where you can see that the last three queries return the default value.
Note: The Qt containers often pass a default T to the functions (e.g. QMap::value()) which they return, if they could not find the requested element. You might also try to use something like
template <typename T>
T value(int index, const T& defaultValue = T())
{
...
}
Edit: Fixed returning a const-reference from temporary.
QVariants? – cmannett85 Aug 17 '12 at 11:09QVariant::constData()doesn't exist. – cmannett85 Aug 17 '12 at 11:31QVariant v = QString("hello world");<br/> <br>const QString * str = static_cast<const QString*><br>(v.constData());<br/> <br>if (str)<br/> <br>std::cout << str->toStdString().c_str();<br/> This printsHello world– nikitoz Aug 17 '12 at 12:07