mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-22 05:56:08 -04:00
16 lines
462 B
C++
16 lines
462 B
C++
#pragma once
|
|
|
|
#include "BaseThreadsRecordModel.hpp"
|
|
|
|
class ThreadsModel : public BaseThreadsRecordModel
|
|
{
|
|
public:
|
|
explicit ThreadsModel(app::Application *app);
|
|
|
|
void requestRecords(uint32_t offset, uint32_t limit) override;
|
|
[[nodiscard]] auto getMinimalItemHeight() const -> unsigned int override;
|
|
[[nodiscard]] auto getItem(gui::Order order) -> gui::ListItem * override;
|
|
|
|
auto handleQueryResponse(db::QueryResult *queryResult) -> bool;
|
|
};
|