Files
Upsilon/apps/reader/list_book_controller.cpp
2020-11-14 13:39:11 +01:00

37 lines
546 B
C++

#include "list_book_controller.h"
namespace reader
{
View* ListBookController::view()
{
return &m_tableView;
}
ListBookController::ListBookController(Responder * parentResponder):
ViewController(parentResponder),
m_tableView(this, this)
{
}
int ListBookController::numberOfRows() const
{
return 0;
}
KDCoordinate ListBookController::cellHeight()
{
return 50;
}
HighlightCell * ListBookController::reusableCell(int index)
{
return nullptr;
}
int ListBookController::reusableCellCount() const
{
return 0;
}
}