Defines | Functions
core/vsl/vsl_stack_io.txx File Reference

binary IO functions for vcl_stack<T> More...

#include "vsl_stack_io.h"
#include <vsl/vsl_binary_io.h>
#include <vsl/vsl_indent.h>

Go to the source code of this file.

Defines

#define vsl_stack_io_txx_
#define VSL_STACK_IO_INSTANTIATE(T)

Functions

template<class T >
void vsl_b_write (vsl_b_ostream &s, const vcl_stack< T > &v)
 Write stack to binary stream.
template<class T >
void vsl_b_read (vsl_b_istream &is, vcl_stack< T > &v)
 Read stack from binary stream.
template<class T >
void vsl_print_summary (vcl_ostream &os, const vcl_stack< T > &v)
 Output a human readable summary to the stream.

Detailed Description

binary IO functions for vcl_stack<T>

Author:
K.Y.McGaul

Definition in file vsl_stack_io.txx.


Define Documentation

#define VSL_STACK_IO_INSTANTIATE (   T)
Value:
template void vsl_print_summary(vcl_ostream& s, const vcl_stack<T >& v); \
template void vsl_b_write(vsl_b_ostream& s, const vcl_stack<T >& v); \
template void vsl_b_read(vsl_b_istream& s, vcl_stack<T >& v)

Definition at line 96 of file vsl_stack_io.txx.

#define vsl_stack_io_txx_

Definition at line 3 of file vsl_stack_io.txx.


Function Documentation

template<class T >
void vsl_b_read ( vsl_b_istream is,
vcl_stack< T > &  v 
)

Read stack from binary stream.

Definition at line 36 of file vsl_stack_io.txx.

template<class T >
void vsl_b_write ( vsl_b_ostream s,
const vcl_stack< T > &  v 
)

Write stack to binary stream.

Definition at line 16 of file vsl_stack_io.txx.

template<class T >
void vsl_print_summary ( vcl_ostream &  os,
const vcl_stack< T > &  v 
)

Output a human readable summary to the stream.

Print human readable summary of object to a stream.

Definition at line 76 of file vsl_stack_io.txx.