|
Last change
on this file since 1098 was 834, checked in by garnier, 17 years ago |
|
import all except CVS
|
-
Property svn:executable
set to
*
|
|
File size:
712 bytes
|
| Rev | Line | |
|---|
| [834] | 1 | // Copyright FreeHEP, 2005.
|
|---|
| 2 | #ifndef CHEPREP_ZIPENTRY_H
|
|---|
| 3 | #define CHEPREP_ZIPENTRY_H
|
|---|
| 4 |
|
|---|
| 5 | #include <string>
|
|---|
| 6 | #include <vector>
|
|---|
| 7 |
|
|---|
| 8 | /**
|
|---|
| 9 | * @author Mark Donszelmann
|
|---|
| 10 | * @version $Id: ZipEntry.h,v 1.9 2005/06/02 21:28:45 duns Exp $
|
|---|
| 11 | */
|
|---|
| 12 | namespace cheprep {
|
|---|
| 13 |
|
|---|
| 14 | class ZipEntry {
|
|---|
| 15 |
|
|---|
| 16 | public:
|
|---|
| 17 |
|
|---|
| 18 | std::string name;
|
|---|
| 19 | int method;
|
|---|
| 20 | int date;
|
|---|
| 21 | int time;
|
|---|
| 22 | unsigned int crc;
|
|---|
| 23 | unsigned int size;
|
|---|
| 24 | unsigned int csize;
|
|---|
| 25 | long offset;
|
|---|
| 26 | long data;
|
|---|
| 27 |
|
|---|
| 28 | ZipEntry() {
|
|---|
| 29 | }
|
|---|
| 30 |
|
|---|
| 31 | virtual ~ZipEntry() {
|
|---|
| 32 | }
|
|---|
| 33 | };
|
|---|
| 34 |
|
|---|
| 35 | } // cheprep
|
|---|
| 36 |
|
|---|
| 37 | #endif // CHEPREP_ZIPENTRY_H
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.