Implementation binary IO functions for vcl_(multi)map<Key, T, Compare> More...
#include <iostream>#include "vsl_map_io.h"#include <vsl/vsl_binary_io.h>#include <vsl/vsl_indent.h>#include <vsl/vsl_pair_io.h>Go to the source code of this file.
Macros | |
| #define | VSL_MAP_IO_INSTANTIATE(Key, T, Compare) |
| #define | VSL_MULTIMAP_IO_INSTANTIATE(Key, T, Compare) |
Functions | |
| template<class Key , class T , class Compare > | |
| void | vsl_b_write (vsl_b_ostream &s, const std::map< Key, T, Compare > &v) |
| Write map to binary stream. More... | |
| template<class Key , class T , class Compare > | |
| void | vsl_b_read (vsl_b_istream &is, std::map< Key, T, Compare > &v) |
| Read map from binary stream. More... | |
| template<class Key , class T , class Compare > | |
| void | vsl_print_summary (std::ostream &os, const std::map< Key, T, Compare > &v) |
| Output a human readable summary to the stream. More... | |
| template<class Key , class T , class Compare > | |
| void | vsl_b_write (vsl_b_ostream &s, const std::multimap< Key, T, Compare > &v) |
| Write multimap to binary stream. More... | |
| template<class Key , class T , class Compare > | |
| void | vsl_b_read (vsl_b_istream &is, std::multimap< Key, T, Compare > &v) |
| Read multimap from binary stream. More... | |
| template<class Key , class T , class Compare > | |
| void | vsl_print_summary (std::ostream &os, const std::multimap< Key, T, Compare > &v) |
| Output a human readable summary to the stream. More... | |
Implementation binary IO functions for vcl_(multi)map<Key, T, Compare>
Modifications IMS - 22 June 2001 - Added IO for multimap
Definition in file vsl_map_io.hxx.
| #define VSL_MAP_IO_INSTANTIATE | ( | Key, | |
| T, | |||
| Compare | |||
| ) |
Definition at line 90 of file vsl_map_io.hxx.
| #define VSL_MULTIMAP_IO_INSTANTIATE | ( | Key, | |
| T, | |||
| Compare | |||
| ) |
Definition at line 164 of file vsl_map_io.hxx.
| void vsl_b_read | ( | vsl_b_istream & | is, |
| std::map< Key, T, Compare > & | v | ||
| ) |
Read map from binary stream.
Definition at line 38 of file vsl_map_io.hxx.
| void vsl_b_read | ( | vsl_b_istream & | is, |
| std::multimap< Key, T, Compare > & | v | ||
| ) |
Read multimap from binary stream.
Read map from binary stream.
Definition at line 114 of file vsl_map_io.hxx.
| void vsl_b_write | ( | vsl_b_ostream & | s, |
| const std::map< Key, T, Compare > & | v | ||
| ) |
Write map to binary stream.
Definition at line 23 of file vsl_map_io.hxx.
| void vsl_b_write | ( | vsl_b_ostream & | s, |
| const std::multimap< Key, T, Compare > & | v | ||
| ) |
Write multimap to binary stream.
Write map to binary stream.
Definition at line 98 of file vsl_map_io.hxx.
| void vsl_print_summary | ( | std::ostream & | os, |
| const std::map< Key, T, Compare > & | v | ||
| ) |
Output a human readable summary to the stream.
Print human readable summary of object to a stream.
Definition at line 70 of file vsl_map_io.hxx.
| void vsl_print_summary | ( | std::ostream & | os, |
| const std::multimap< Key, T, Compare > & | v | ||
| ) |
Output a human readable summary to the stream.
Print human readable summary of object to a stream.
Definition at line 146 of file vsl_map_io.hxx.
1.8.15