diff options
author | Martin Gallwey <mtg@openoffice.org> | 2001-09-14 13:43:44 +0000 |
---|---|---|
committer | Martin Gallwey <mtg@openoffice.org> | 2001-09-14 13:43:44 +0000 |
commit | 26a338ab696d0dc7e2f2fc396290d2abc8e9eee1 (patch) | |
tree | 815651469d28ac22806c6790eaf29a50c251d383 /package/inc/ZipEnumeration.hxx | |
parent | 54119623d62f97c9ec29e743ec1b4f71d0e7ac5c (diff) |
#89303# use new hash map
Diffstat (limited to 'package/inc/ZipEnumeration.hxx')
-rw-r--r-- | package/inc/ZipEnumeration.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/package/inc/ZipEnumeration.hxx b/package/inc/ZipEnumeration.hxx index 0a4f7c83f..ba4dfd733 100644 --- a/package/inc/ZipEnumeration.hxx +++ b/package/inc/ZipEnumeration.hxx @@ -2,9 +2,9 @@ * * $RCSfile: ZipEnumeration.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: mtg $ $Date: 2001-07-04 14:56:13 $ + * last change: $Author: mtg $ $Date: 2001-09-14 14:43:44 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -61,8 +61,8 @@ #ifndef _ZIP_ENUMERATION_HXX #define _ZIP_ENUMERATION_HXX -#ifndef _ENTRY_HASH_HXX -#include <EntryHash.hxx> +#ifndef _HASHMAPS_HXX +#include <HashMaps.hxx> #endif class ZipEnumeration @@ -72,8 +72,8 @@ protected: EntryHash::const_iterator aIterator; public: sal_Bool SAL_CALL hasMoreElements(); - const com::sun::star::packages::zip::ZipEntry * SAL_CALL nextElement(); - ZipEnumeration( EntryHash &rNewEntryHash); - ~ZipEnumeration(void); + const ZipEntry * SAL_CALL nextElement(); + ZipEnumeration( EntryHash &rNewEntryHash ); + ~ZipEnumeration(); }; #endif |