]> git.llucax.com Git - software/posixx.git/blob - src/buffer.hpp
Add accessors with reference semantics to objects
[software/posixx.git] / src / buffer.hpp
1 #ifndef POSIXX_BUFFER_HPP_
2 #define POSIXX_BUFFER_HPP_
3
4 #include "basic_buffer.hpp" // posixx::basic_buffer
5
6 namespace posixx {
7
8 /// A buffer that uses realloc(3) for memory management.
9 typedef basic_buffer< unsigned char > buffer;
10
11 } // namespace posixx
12
13 #endif // POSIXX_BUFFER_HPP_