mirror of
				https://gitee.com/jiuyilian/embedded-framework.git
				synced 2025-10-24 18:20:15 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			198 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			198 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #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_
 | 
