summaryrefslogtreecommitdiff
path: root/package/inc/ZipEnumeration.hxx
diff options
context:
space:
mode:
authorMartin Gallwey <mtg@openoffice.org>2001-09-14 13:43:44 +0000
committerMartin Gallwey <mtg@openoffice.org>2001-09-14 13:43:44 +0000
commit23ce8b76d8e1b6fce89e76aa9e05f01be424d37e (patch)
treeee72e6b670ea895da1acf0ae9df37b7154438423 /package/inc/ZipEnumeration.hxx
parentc476f31d3b5789155924e7818ad1505cb728d22e (diff)
#89303# use new hash map
Diffstat (limited to 'package/inc/ZipEnumeration.hxx')
-rw-r--r--package/inc/ZipEnumeration.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/package/inc/ZipEnumeration.hxx b/package/inc/ZipEnumeration.hxx
index b625535bcb21..e266efdcca61 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