mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-24 15:05:26 -04:00
13 lines
262 B
C++
13 lines
262 B
C++
#pragma once
|
|
|
|
#include "BaseThreadRecordModel.hpp"
|
|
|
|
class ThreadModel : public BaseThreadRecordModel
|
|
{
|
|
public:
|
|
ThreadModel(app::Application *app);
|
|
|
|
unsigned int getMinimalItemHeight() override;
|
|
gui::ListItem *getItem(gui::Order order) override;
|
|
};
|