Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
ZipOutputStream.h
이 파일의 문서화 페이지로 가기
1 // Copyright FreeHEP, 2005.
2 #ifndef CHEPREP_ZIPOUTPUTSTREAM_H
3 #define CHEPREP_ZIPOUTPUTSTREAM_H
4 
5 #include <string>
6 #include <iostream>
7 #include <vector>
8 
9 
14 namespace cheprep {
15 
16  class ZipOutputStreamBuffer;
17 
18  class ZipOutputStream : public std::ostream {
19 
20  public:
21 
22  ZipOutputStream(std::ostream& os);
23 
24  void closeEntry();
25 
26  void close();
27 
28  void putNextEntry(const std::string& name, bool compress);
29 
30  void setComment(const std::string& comment);
31 
32  virtual ~ZipOutputStream();
33 
34  private:
36  };
37 
38 } // cheprep
39 
40 #endif // CHEPREP_ZIPOUTPUTSTREAM_H
void setComment(const std::string &comment)
const XML_Char * name
Definition: expat.h:151
ZipOutputStream(std::ostream &os)
ZipOutputStreamBuffer * buffer
void putNextEntry(const std::string &name, bool compress)