#include "kitemmodelbase.h"
-KItemRange::KItemRange(int index, int count) :
- index(index),
- count(count)
-{
-}
-
-bool KItemRange::operator == (const KItemRange& other) const
-{
- return index == other.index && count == other.count;
-}
-
KItemModelBase::KItemModelBase(QObject* parent) :
QObject(parent),
m_groupedSorting(false),
return false;
}
-QMimeData* KItemModelBase::createMimeData(const QSet<int>& indexes) const
+int KItemModelBase::expandedParentsCount(int index) const
+{
+ Q_UNUSED(index);
+ return 0;
+}
+
+QMimeData* KItemModelBase::createMimeData(const KItemSet& indexes) const
{
Q_UNUSED(indexes);
return 0;
Q_UNUSED(previous);
}
-#include "kitemmodelbase.moc"