![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
RAII wrapper for FILE*. More...
#include <serialize.h>
Public Member Functions | |
CAutoFile (FILE *filenew, int nTypeIn, int nVersionIn) | |
~CAutoFile () | |
void | fclose () |
FILE * | release () |
operator FILE * () | |
FILE * | operator-> () |
FILE & | operator* () |
FILE ** | operator& () |
FILE * | operator= (FILE *pnew) |
bool | operator! () |
void | setstate (short bits, const char *psz) |
bool | fail () const |
bool | good () const |
void | clear (short n=0) |
short | exceptions () |
short | exceptions (short mask) |
void | SetType (int n) |
int | GetType () |
void | SetVersion (int n) |
int | GetVersion () |
void | ReadVersion () |
void | WriteVersion () |
CAutoFile & | read (char *pch, size_t nSize) |
CAutoFile & | write (const char *pch, size_t nSize) |
template<typename T > | |
unsigned int | GetSerializeSize (const T &obj) |
template<typename T > | |
CAutoFile & | operator<< (const T &obj) |
template<typename T > | |
CAutoFile & | operator>> (T &obj) |
Public Attributes | |
int | nType |
int | nVersion |
Protected Attributes | |
FILE * | file |
short | state |
short | exceptmask |
RAII wrapper for FILE*.
Will automatically close the file when it goes out of scope if not null. If you're returning the file pointer, return file.release(). If you need to close the file early, use file.fclose() instead of fclose(file).
Definition at line 1108 of file serialize.h.
|
inline |
Definition at line 1118 of file serialize.h.
|
inline |
Definition at line 1127 of file serialize.h.
|
inline |
Definition at line 1160 of file serialize.h.
|
inline |
Definition at line 1161 of file serialize.h.
|
inline |
Definition at line 1162 of file serialize.h.
|
inline |
Definition at line 1158 of file serialize.h.
|
inline |
Definition at line 1132 of file serialize.h.
|
inline |
Definition at line 1190 of file serialize.h.
|
inline |
Definition at line 1165 of file serialize.h.
|
inline |
Definition at line 1167 of file serialize.h.
|
inline |
Definition at line 1159 of file serialize.h.
|
inline |
Definition at line 1140 of file serialize.h.
|
inline |
Definition at line 1145 of file serialize.h.
|
inline |
Definition at line 1143 of file serialize.h.
|
inline |
Definition at line 1142 of file serialize.h.
|
inline |
Definition at line 1141 of file serialize.h.
|
inline |
Definition at line 1197 of file serialize.h.
|
inline |
Definition at line 1144 of file serialize.h.
|
inline |
Definition at line 1207 of file serialize.h.
|
inline |
Definition at line 1171 of file serialize.h.
|
inline |
Definition at line 1168 of file serialize.h.
|
inline |
Definition at line 1139 of file serialize.h.
|
inline |
Definition at line 1151 of file serialize.h.
|
inline |
Definition at line 1164 of file serialize.h.
|
inline |
Definition at line 1166 of file serialize.h.
|
inline |
Definition at line 1180 of file serialize.h.
|
inline |
Definition at line 1169 of file serialize.h.
|
protected |
Definition at line 1113 of file serialize.h.
|
protected |
Definition at line 1111 of file serialize.h.
int CAutoFile::nType |
Definition at line 1115 of file serialize.h.
int CAutoFile::nVersion |
Definition at line 1116 of file serialize.h.
|
protected |
Definition at line 1112 of file serialize.h.