Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
GZIPOutputStream.h
이 파일의 문서화 페이지로 가기
1 // Copyright FreeHEP, 2005.
2 #ifndef CHEPREP_GZIPOUTPUTSTREAM_H
3 #define CHEPREP_GZIPOUTPUTSTREAM_H
4 
5 #include <string>
6 
8 
13 namespace cheprep {
14 
15  class GZIPOutputStream : public std::ostream {
16 
17  public:
18 
19  GZIPOutputStream(std::ostream &os);
20 
21  void setFilename(const std::string &filename);
22  void setComment(const std::string &comment);
23 
24  void close();
25 
26  virtual ~GZIPOutputStream();
27 
28  private:
30  };
31 
32 } // cheprep.
33 
34 #endif // CHEPREP_GZIPOUTPUTSTREAM_H
GZIPOutputStream(std::ostream &os)
void setFilename(const std::string &filename)
void setComment(const std::string &comment)
GZIPOutputStreamBuffer * buffer