Import Geant4 10.5.0 source tree
This commit is contained in:
@@ -1,34 +1,33 @@
|
||||
// Copyright FreeHEP, 2005.
|
||||
#ifndef CHEPREP_GZIPOUTPUTSTREAM_H
|
||||
#define CHEPREP_GZIPOUTPUTSTREAM_H
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "cheprep/GZIPOutputStreamBuffer.h"
|
||||
|
||||
/**
|
||||
* @author Mark Donszelmann
|
||||
* @version $Id: GZIPOutputStream.h 66373 2012-12-18 09:41:34Z gcosmo $
|
||||
*/
|
||||
namespace cheprep {
|
||||
|
||||
class GZIPOutputStream : public std::ostream {
|
||||
|
||||
public:
|
||||
|
||||
GZIPOutputStream(std::ostream &os);
|
||||
|
||||
void setFilename(const std::string &filename);
|
||||
void setComment(const std::string &comment);
|
||||
|
||||
void close();
|
||||
|
||||
virtual ~GZIPOutputStream();
|
||||
|
||||
private:
|
||||
GZIPOutputStreamBuffer *buffer;
|
||||
};
|
||||
|
||||
} // cheprep.
|
||||
|
||||
#endif // CHEPREP_GZIPOUTPUTSTREAM_H
|
||||
// Copyright FreeHEP, 2005.
|
||||
#ifndef CHEPREP_GZIPOUTPUTSTREAM_H
|
||||
#define CHEPREP_GZIPOUTPUTSTREAM_H
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "cheprep/GZIPOutputStreamBuffer.h"
|
||||
|
||||
/**
|
||||
* @author Mark Donszelmann
|
||||
*/
|
||||
namespace cheprep {
|
||||
|
||||
class GZIPOutputStream : public std::ostream {
|
||||
|
||||
public:
|
||||
|
||||
GZIPOutputStream(std::ostream &os);
|
||||
|
||||
void setFilename(const std::string &filename);
|
||||
void setComment(const std::string &comment);
|
||||
|
||||
void close();
|
||||
|
||||
virtual ~GZIPOutputStream();
|
||||
|
||||
private:
|
||||
GZIPOutputStreamBuffer *buffer;
|
||||
};
|
||||
|
||||
} // cheprep.
|
||||
|
||||
#endif // CHEPREP_GZIPOUTPUTSTREAM_H
|
||||
|
||||
Reference in New Issue
Block a user