16 ThreadMsg(
int id, std::shared_ptr<dmq::DelegateMsg> data) :
22 int GetId()
const {
return m_id; }
23 std::shared_ptr<dmq::DelegateMsg>
GetData() {
return m_data; }
27 std::shared_ptr<dmq::DelegateMsg> m_data;
A class to hold a platform-specific thread messsage that will be passed through the OS message queue.
Definition freertos/ThreadMsg.h:7
ThreadMsg(int id, std::shared_ptr< dmq::DelegateMsg > data)
Definition freertos/ThreadMsg.h:16
std::shared_ptr< dmq::DelegateMsg > GetData()
Definition freertos/ThreadMsg.h:23
int GetId() const
Definition freertos/ThreadMsg.h:22