mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-29 12:18:04 +01:00
Introduce abstract interface for message encoder/decoder
This commit is contained in:
@@ -29,6 +29,7 @@
|
||||
|
||||
#include "err.hpp"
|
||||
#include "msg.hpp"
|
||||
#include "i_decoder.hpp"
|
||||
#include "stdint.hpp"
|
||||
|
||||
namespace zmq
|
||||
@@ -47,7 +48,7 @@ namespace zmq
|
||||
// This class implements the state machine that parses the incoming buffer.
|
||||
// Derived class should implement individual state machine actions.
|
||||
|
||||
template <typename T> class decoder_base_t
|
||||
template <typename T> class decoder_base_t : public i_decoder
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user