The bytestream
is a static class that allows an input stream to be constructed from any STL container.
More...
#include <containerstream.h>
|
template<typename _CollectionType > |
static concurrency::streams::istream | open_istream (_CollectionType data) |
| Creates a single byte character input stream given an STL container. More...
|
|
template<typename _CollectionType > |
static concurrency::streams::ostream | open_ostream () |
| Creates a single byte character output stream using an STL container as storage. More...
|
|
The bytestream
is a static class that allows an input stream to be constructed from any STL container.
template<typename _CollectionType >
static concurrency::streams::istream Concurrency::streams::bytestream::open_istream |
( |
_CollectionType |
data | ) |
|
|
inlinestatic |
Creates a single byte character input stream given an STL container.
- Template Parameters
-
_CollectionType | The type of the STL collection. |
- Parameters
-
data | STL container to back the input stream. |
- Returns
- An single byte character input stream.
template<typename _CollectionType >
static concurrency::streams::ostream Concurrency::streams::bytestream::open_ostream |
( |
| ) |
|
|
inlinestatic |
Creates a single byte character output stream using an STL container as storage.
- Template Parameters
-
_CollectionType | The type of the STL collection. |
- Returns
- A single byte character output stream.
The documentation for this class was generated from the following file: