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