43 lines
1.0 KiB
C++
43 lines
1.0 KiB
C++
#ifndef __BinaryPair_H__
|
|
#define __BinaryPair_H__
|
|
|
|
#include "Sys.h"
|
|
#include "Message.h"
|
|
|
|
#include "Net\IPEndPoint.h"
|
|
|
|
// 二进制名值对
|
|
class BinaryPair : public Object
|
|
{
|
|
public:
|
|
|
|
//BinaryPair(Buffer& bs);
|
|
BinaryPair(Stream& ms);
|
|
BinaryPair(const BinaryPair& pair) = delete;
|
|
|
|
Buffer Get(cstring name) const;
|
|
bool Set(cstring name, const Buffer& bs);
|
|
bool Set(const String& name, const Buffer& bs);
|
|
|
|
bool Get(cstring name, byte& value) const;
|
|
bool Get(cstring name, ushort& value) const;
|
|
bool Get(cstring name, uint& value) const;
|
|
bool Get(cstring name, UInt64& value) const;
|
|
bool Get(cstring name, Buffer& value) const;
|
|
bool Get(cstring name, IPEndPoint& value) const;
|
|
|
|
bool Set(cstring name, byte value);
|
|
bool Set(cstring name, ushort value);
|
|
bool Set(cstring name, uint value);
|
|
bool Set(cstring name, UInt64 value);
|
|
bool Set(cstring name, const IPEndPoint& value);
|
|
|
|
private:
|
|
//byte* Data; // 数据指针
|
|
//uint Length; // 数据长度
|
|
uint _p; // 写入时的位置
|
|
Stream* _s;
|
|
};
|
|
|
|
#endif
|