Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
GZIPOutputStream.cc
이 파일의 문서화 페이지로 가기
1 // Copyright FreeHEP, 2005.
2 
5 
10 namespace cheprep {
11 
12  using namespace std;
13 
15  : std::ostream(NULL) {
16 
17  buffer = new GZIPOutputStreamBuffer(os.rdbuf());
18  init(buffer);
19  }
20 
21 
22  void GZIPOutputStream::setFilename(const string &filename) {
23  buffer->setFilename(filename);
24  }
25 
26  void GZIPOutputStream::setComment(const string &comment) {
27  buffer->setComment(comment);
28  }
29 
31  buffer->close();
32  }
33 
34 
36  delete buffer;
37  }
38 
39 } // cheprep
void setFilename(const std::string &filename)
GZIPOutputStream(std::ostream &os)
void setFilename(const std::string &filename)
void setComment(const std::string &comment)
void setComment(const std::string &comment)
GZIPOutputStreamBuffer * buffer