This Private Namespace partially concrete class implements common/helper method for supporting the En...
Definition Encoder_.h:35
Encoder_(char startOfFrame, char endOfFrame, char escapeChar, bool appendNewline=true)
Constructor.
virtual bool start(char src) noexcept=0
Helper method - implemented by the child class.
bool output(char src) noexcept
See Cpl::Text::Frame::Encoder.
bool output(const char *src, size_t numBytes) noexcept
See Cpl::Text::Frame::Encoder.
bool output(const char *src) noexcept
See Cpl::Text::Frame::Encoder.
const bool m_appendNewline
Remember my newline option.
Definition Encoder_.h:50
virtual bool start() noexcept=0
Helper method - implemented by the child class.
virtual char encodeChar(char charToBeEscaped)
Returns the encoded/escaped value for the specified special character.
bool startFrame(void) noexcept
See Cpl::Text::Frame::Encoder.
bool endFrame(void) noexcept
See Cpl::Text::Frame::Encoder.
virtual bool append(char src) noexcept=0
Helper method - implemented by the child class.
This class defines an interface for 'transmitted' (encoding) a frame.
Definition Encoder.h:65