6#ifndef DUNE_GRID_IO_FILE_VTK_STREAMS_HH
7#define DUNE_GRID_IO_FILE_VTK_STREAMS_HH
44 char* p =
reinterpret_cast<char*
>(&data);
45 for (
size_t len =
sizeof(X); len > 0; len--,p++)
95 char* p =
reinterpret_cast<char*
>(&data);
Include standard header files.
Definition agrid.hh:60
struct representing the three byte text as well as the four 6 bit chunks
Definition b64enc.hh:34
void write(char *t)
Definition b64enc.hh:60
size_type size
Definition b64enc.hh:36
void put(const char c)
Definition b64enc.hh:54
void reset()
Definition b64enc.hh:39
class to base64 encode a stream of data
Definition streams.hh:16
void write(X &data)
encode a data item
Definition streams.hh:42
void flush()
flush the current unwritten data to the stream.
Definition streams.hh:64
Base64Stream(std::ostream &s_)
Construct a Base64Stream.
Definition streams.hh:27
~Base64Stream()
destroy the object
Definition streams.hh:77
write out data in binary
Definition streams.hh:84
void write(T data)
write data to stream
Definition streams.hh:93
RawStream(std::ostream &theStream)
make a new stream
Definition streams.hh:87