vul_io_user_info.h
Go to the documentation of this file.
1 // This is core/vul/io/vul_io_user_info.h
2 #ifndef vul_io_user_info_h
3 #define vul_io_user_info_h
4 //:
5 // \file
6 // \brief binary io for vul_user_info.
7 // \author Christine Beeston
8 // \date 22-Mar-2001
9 
10 #include <vsl/vsl_binary_io.h>
11 #include <vul/vul_user_info.h>
12 
13 //: Binary save vul_user_info to stream.
14 void vsl_b_write(vsl_b_ostream &os, const vul_user_info & v);
15 
16 //: Binary load vul_user_info from stream.
17 void vsl_b_read(vsl_b_istream &is, vul_user_info & v);
18 
19 //: Print human readable summary of object to a stream
20 void vsl_print_summary(std::ostream& os,const vul_user_info & v);
21 
22 
23 #endif // vul_io_user_info_h
Reads information about a user from the password file.
Reads information about a user from the password file.
Definition: vul_user_info.h:22
void vsl_print_summary(std::ostream &os, const vul_user_info &v)
Print human readable summary of object to a stream.
void vsl_b_read(vsl_b_istream &is, vul_user_info &v)
Binary load vul_user_info from stream.
void vsl_b_write(vsl_b_ostream &os, const vul_user_info &v)
Binary save vul_user_info to stream.