binary IO functions for vcl_list<T> More...
#include "vsl_list_io.h"
#include <vcl_iostream.h>
#include <vsl/vsl_binary_io.h>
#include <vsl/vsl_indent.h>
Go to the source code of this file.
Defines | |
#define | vsl_list_io_txx_ |
#define | VSL_LIST_IO_INSTANTIATE(T) |
Functions | |
template<class T > | |
void | vsl_b_write (vsl_b_ostream &s, const vcl_list< T > &v) |
Write list to binary stream. | |
template<class T > | |
void | vsl_b_read (vsl_b_istream &is, vcl_list< T > &v) |
Read list from binary stream. | |
template<class T > | |
void | vsl_print_summary (vcl_ostream &os, const vcl_list< T > &v) |
Output a human readable summary to the stream. |
#define VSL_LIST_IO_INSTANTIATE | ( | T | ) |
template void vsl_print_summary(vcl_ostream&, const vcl_list<T >&); \ template void vsl_b_write(vsl_b_ostream& s, const vcl_list<T >& v); \ template void vsl_b_read(vsl_b_istream& s, vcl_list<T >& v)
Definition at line 78 of file vsl_list_io.txx.
#define vsl_list_io_txx_ |
Definition at line 3 of file vsl_list_io.txx.
void vsl_b_read | ( | vsl_b_istream & | is, |
vcl_list< T > & | v | ||
) |
Read list from binary stream.
Definition at line 31 of file vsl_list_io.txx.
void vsl_b_write | ( | vsl_b_ostream & | s, |
const vcl_list< T > & | v | ||
) |
Write list to binary stream.
Definition at line 19 of file vsl_list_io.txx.
void vsl_print_summary | ( | vcl_ostream & | os, |
const vcl_list< T > & | v | ||
) |
Output a human readable summary to the stream.
Print human readable summary of object to a stream.
Definition at line 61 of file vsl_list_io.txx.