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