mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-24 06:55:37 -04:00
17 lines
446 B
C++
17 lines
446 B
C++
#pragma once
|
|
|
|
#include "BaseThreadRecordModel.hpp"
|
|
|
|
class ThreadModel : public BaseThreadRecordModel
|
|
{
|
|
public:
|
|
ThreadModel(app::Application *app);
|
|
|
|
// virtual method for db::QueryListener
|
|
auto handleQueryResponse(db::QueryResult *) -> bool override;
|
|
|
|
void requestRecords(uint32_t offset, uint32_t limit) override;
|
|
unsigned int getMinimalItemHeight() const override;
|
|
gui::ListItem *getItem(gui::Order order) override;
|
|
};
|