xref: /AOO41X/main/package/inc/HashMaps.hxx (revision f319bb99b6b251a37b98027a84e8048ce3778b1f)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 #ifndef _HASHMAPS_HXX
24 #define _HASHMAPS_HXX
25 
26 #include <ZipEntry.hxx>
27 #include <vos/ref.hxx>
28 #include <hash_map>
29 
30 struct eqFunc
31 {
operator ()eqFunc32     sal_Bool operator()( const rtl::OUString &r1,
33                          const rtl::OUString &r2) const
34     {
35         return r1 == r2;
36     }
37 };
38 
39 class ZipPackageFolder;
40 namespace com { namespace sun { namespace star { namespace packages {
41 class ContentInfo;
42 } } } }
43 
44 typedef std::hash_map < rtl::OUString,
45                         ZipPackageFolder *,
46                         ::rtl::OUStringHash,
47                         eqFunc > FolderHash;
48 
49 typedef std::hash_map < rtl::OUString,
50                         vos::ORef < com::sun::star::packages::ContentInfo >,
51                         ::rtl::OUStringHash,
52                         eqFunc > ContentHash;
53 
54 typedef std::hash_map < rtl::OUString,
55                         ZipEntry,
56                         rtl::OUStringHash,
57                         eqFunc > EntryHash;
58 
59 #endif
60