mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 13:17:08 -04:00
32 lines
583 B
C++
32 lines
583 B
C++
/*
|
|
* @file NotificationMuxChannel.hpp
|
|
* @author Mateusz Piesta (mateusz.piesta@mudita.com)
|
|
* @date 28.06.19
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PUREPHONE_NOTIFICATIONMUXCHANNEL_HPP
|
|
#define PUREPHONE_NOTIFICATIONMUXCHANNEL_HPP
|
|
|
|
#include "MuxChannel.hpp"
|
|
|
|
class MuxDaemon;
|
|
|
|
class NotificationMuxChannel : public MuxChannel{
|
|
public:
|
|
|
|
NotificationMuxChannel(MuxDaemon* mux);
|
|
~NotificationMuxChannel();
|
|
|
|
|
|
|
|
int ParseInputData(uint8_t* data, size_t size) override final;
|
|
};
|
|
|
|
|
|
#endif //PUREPHONE_NOTIFICATIONMUXCHANNEL_HPP
|