Realistic 3D camera system
3D camera system components
|
#include <buffer.hpp>
Public Types | |
typedef mutable_buffer | value_type |
The type for each element in the list of buffers. More... | |
typedef const mutable_buffer * | const_iterator |
A random-access iterator type that may be used to read elements. More... | |
Public Member Functions | |
mutable_buffers_1 (void *data, std::size_t size) | |
Construct to represent a given memory range. More... | |
mutable_buffers_1 (const mutable_buffer &b) | |
Construct to represent a single modifiable buffer. More... | |
const_iterator | begin () const |
Get a random-access iterator to the first element. More... | |
const_iterator | end () const |
Get a random-access iterator for one past the last element. More... | |
Public Member Functions inherited from asio::mutable_buffer | |
mutable_buffer () | |
Construct an empty buffer. More... | |
mutable_buffer (void *data, std::size_t size) | |
Construct a buffer to represent a given memory range. More... | |
Additional Inherited Members | |
Related Functions inherited from asio::mutable_buffer | |
mutable_buffer | operator+ (const mutable_buffer &b, std::size_t start) |
Create a new modifiable buffer that is offset from the start of another. More... | |
mutable_buffer | operator+ (std::size_t start, const mutable_buffer &b) |
Create a new modifiable buffer that is offset from the start of another. More... | |
Adapts a single modifiable buffer so that it meets the requirements of the MutableBufferSequence concept.
Definition at line 157 of file buffer.hpp.
typedef const mutable_buffer* asio::mutable_buffers_1::const_iterator |
A random-access iterator type that may be used to read elements.
Definition at line 165 of file buffer.hpp.
The type for each element in the list of buffers.
Definition at line 162 of file buffer.hpp.
|
inline |
Construct to represent a given memory range.
Definition at line 168 of file buffer.hpp.
|
inlineexplicit |
Construct to represent a single modifiable buffer.
Definition at line 174 of file buffer.hpp.
|
inline |
Get a random-access iterator to the first element.
Definition at line 180 of file buffer.hpp.
|
inline |
Get a random-access iterator for one past the last element.
Definition at line 186 of file buffer.hpp.