mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-28 11:31:56 +01:00
Problem: formatting inconsistent
Solution: applied clang-format
This commit is contained in:
@@ -34,26 +34,23 @@
|
||||
|
||||
namespace zmq
|
||||
{
|
||||
// Encoder for ZMTP/1.0 protocol. Converts messages into data batches.
|
||||
// Encoder for ZMTP/1.0 protocol. Converts messages into data batches.
|
||||
|
||||
class v1_encoder_t : public encoder_base_t <v1_encoder_t>
|
||||
{
|
||||
public:
|
||||
class v1_encoder_t : public encoder_base_t<v1_encoder_t>
|
||||
{
|
||||
public:
|
||||
v1_encoder_t (size_t bufsize_);
|
||||
~v1_encoder_t ();
|
||||
|
||||
v1_encoder_t (size_t bufsize_);
|
||||
~v1_encoder_t ();
|
||||
private:
|
||||
void size_ready ();
|
||||
void message_ready ();
|
||||
|
||||
private:
|
||||
unsigned char tmpbuf[10];
|
||||
|
||||
void size_ready ();
|
||||
void message_ready ();
|
||||
|
||||
unsigned char tmpbuf [10];
|
||||
|
||||
v1_encoder_t (const v1_encoder_t&);
|
||||
const v1_encoder_t &operator = (const v1_encoder_t&);
|
||||
};
|
||||
v1_encoder_t (const v1_encoder_t &);
|
||||
const v1_encoder_t &operator= (const v1_encoder_t &);
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user