38 lines
712 B
C++
Executable File
38 lines
712 B
C++
Executable File
// Copyright FreeHEP, 2005.
|
|
#ifndef CHEPREP_ZIPENTRY_H
|
|
#define CHEPREP_ZIPENTRY_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
/**
|
|
* @author Mark Donszelmann
|
|
* @version $Id: ZipEntry.h,v 1.9 2005-06-02 21:28:45 duns Exp $
|
|
*/
|
|
namespace cheprep {
|
|
|
|
class ZipEntry {
|
|
|
|
public:
|
|
|
|
std::string name;
|
|
int method;
|
|
int date;
|
|
int time;
|
|
unsigned int crc;
|
|
unsigned int size;
|
|
unsigned int csize;
|
|
long offset;
|
|
long data;
|
|
|
|
ZipEntry() {
|
|
}
|
|
|
|
virtual ~ZipEntry() {
|
|
}
|
|
};
|
|
|
|
} // cheprep
|
|
|
|
#endif // CHEPREP_ZIPENTRY_H
|