emsApplication/sdk/include/hv/Buffer.h

16 lines
198 B
C
Raw Normal View History

2024-09-10 16:12:38 +08:00
#ifndef HV_BUFFER_HPP_
#define HV_BUFFER_HPP_
#include <memory>
#include "hbuf.h"
namespace hv {
typedef HBuf Buffer;
typedef std::shared_ptr<Buffer> BufferPtr;
}
#endif // HV_BUFFER_HPP_