Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext
static_buffer_base::static_buffer_base

Constructor.

Synopsis
static_buffer_base(
    void* p,
    std::size_t size);
Description

This creates a dynamic buffer using the provided storage area.

Parameters

Name

Description

p

A pointer to valid storage of at least n bytes.

size

The number of valid bytes pointed to by p.


PrevUpHomeNext