yacreader/YACReaderLibrary/comics_view.cpp
Luis Ángel San Martín 664dac3401 code refactoring for adding support to multiple "comics views"
two "comics views" added, classic (flow+table_view) and grid (based on qml/qtquick)
TODO: the views are only interchangeable in compilation time, some more work is needed for doing it in run time.
fixed reloadCovers
2014-07-06 14:50:28 +02:00

12 lines
175 B
C++

#include "comics_view.h"
ComicsView::ComicsView(QWidget *parent) :
QWidget(parent),model(NULL)
{
}
void ComicsView::setModel(TableModel *m)
{
model = m;
}