mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-21 07:28:21 -04:00
27 lines
473 B
C++
27 lines
473 B
C++
/*
|
|
* @file ControlMuxChannel.hpp
|
|
* @author Mateusz Piesta (mateusz.piesta@mudita.com)
|
|
* @date 28.06.19
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PUREPHONE_CONTROLMUXCHANNEL_HPP
|
|
#define PUREPHONE_CONTROLMUXCHANNEL_HPP
|
|
|
|
#include "MuxChannel.hpp"
|
|
|
|
class ControlMuxChannel : public MuxChannel {
|
|
public:
|
|
|
|
ControlMuxChannel(InOutSerialWorker* inout);
|
|
~ControlMuxChannel();
|
|
|
|
};
|
|
|
|
|
|
#endif //PUREPHONE_CONTROLMUXCHANNEL_HPP
|