zstream.h | 42 zstringlen(class izstream&); 49 // ----------------------------- izstream ----------------------------- 51 class izstream class 54 izstream() : m_fp(0) {} function in class:izstream 55 izstream(FILE* fp) : m_fp(0) { open(fp); } function in class:izstream 56 izstream(const char* name) : m_fp(0) { open(name); } function in class:izstream 57 ~izstream() { close(); } 115 inline int read(izstream& zs, T* x, Items items) { 123 inline izstream& operator>(izstream& zs, T& x) [all...] |