Lines Matching refs:izstream
42 zstringlen(class izstream&);
51 class izstream
54 izstream() : m_fp(0) {} in izstream() function
55 izstream(FILE* fp) : m_fp(0) { open(fp); } in izstream() function
56 izstream(const char* name) : m_fp(0) { open(name); } in izstream() function
57 ~izstream() { close(); } in ~izstream()
115 inline int read(izstream& zs, T* x, Items items) { in read()
123 inline izstream& operator>(izstream& zs, T& x) {
129 inline zstringlen::zstringlen(izstream& zs) { in zstringlen()
138 inline izstream& operator>(izstream& zs, char* x) {
145 inline char* read_string(izstream& zs) { in read_string()