#include "imagelistmodel.h"
ImageListModel::ImageListModel()
{
}
QVariant ImageListModel::data(const QModelIndex index, int role = Qt::DisplayRole) const = 0
{
}
QModelIndex ImageListModel::index(int row, int column, const QModelIndex & parent = QModelIndex()) const = 0
{
}
QModelIndex ImageListModel::parent ( const QModelIndex & index ) const = 0
{
return QModelIndex();
}
int ImageListModel::columnCount ( const QModelIndex & parent = QModelIndex() ) const = 0
{
return 3;
}
int ImageListModel::rowCount ( const QModelIndex & parent = QModelIndex() ) const = 0
{
}