2013-05-06 12:11:55 +00:00
|
|
|
|
|
|
|
#include "refidadapter.hpp"
|
|
|
|
|
2014-05-27 12:01:15 +00:00
|
|
|
#include "cassert"
|
|
|
|
#include <QVariant>
|
|
|
|
|
2013-05-06 12:11:55 +00:00
|
|
|
CSMWorld::RefIdAdapter::RefIdAdapter() {}
|
|
|
|
|
2014-05-27 12:01:15 +00:00
|
|
|
CSMWorld::RefIdAdapter::~RefIdAdapter() {}
|
|
|
|
|
2014-06-02 18:41:37 +00:00
|
|
|
QVariant CSMWorld::RefIdAdapter::getNestedData (const CSMWorld::RefIdColumn* column, const CSMWorld::RefIdData& data, int idnex, int subRowIndex, int subColIndex) const
|
2014-05-27 12:01:15 +00:00
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
2014-06-02 18:41:37 +00:00
|
|
|
void CSMWorld::RefIdAdapter::setNestedData (const CSMWorld::RefIdColumn* column, CSMWorld::RefIdData& data, const QVariant& value, int index, int subRowIndex, int subColIndex) const
|
2014-05-27 12:01:15 +00:00
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
}
|