Home | History | Annotate | Download | only in iostream

Lines Matching refs:gzofstream

47   friend class gzofstream;
48 friend gzofstream &setcompressionlevel( gzofstream &, int );
49 friend gzofstream &setcompressionstrategy( gzofstream &, int );
80 class gzofstream : public gzfilestream_common, public ostream {
84 gzofstream();
85 gzofstream( const char *name, int io_mode = ios::out );
86 gzofstream( int fd, int io_mode = ios::out );
88 virtual ~gzofstream();
93 friend gzofstream &operator<<(gzofstream &, const gzomanip<T> &);
95 gzomanip(gzofstream &(*f)(gzofstream &, T), T v) : func(f), val(v) { }
97 gzofstream &(*func)(gzofstream &, T);
101 template<class T> gzofstream &operator<<(gzofstream &s, const gzomanip<T> &m)
106 inline gzofstream &setcompressionlevel( gzofstream &s, int l )
112 inline gzofstream &setcompressionstrategy( gzofstream &s, int l )