You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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_
|