nss: upgrade to release 3.73
[LibreOffice.git] / xmloff / inc / StyleMap.hxx
blobb6b3249e1eae972505ae299722a66729505136d3
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_XMLOFF_INC_STYLEMAP_HXX
21 #define INCLUDED_XMLOFF_INC_STYLEMAP_HXX
23 #include <com/sun/star/lang/XUnoTunnel.hpp>
24 #include <comphelper/servicehelper.hxx>
25 #include <cppuhelper/implbase.hxx>
26 #include <boost/functional/hash.hpp>
27 #include <unordered_map>
29 enum class XmlStyleFamily;
31 struct StyleNameKey_Impl
33 XmlStyleFamily m_nFamily;
34 OUString m_aName;
36 StyleNameKey_Impl( XmlStyleFamily nFamily,
37 const OUString& rName ) :
38 m_nFamily( nFamily ),
39 m_aName( rName )
44 struct StyleNameHash_Impl
46 inline size_t operator()( const StyleNameKey_Impl& r ) const;
47 inline bool operator()( const StyleNameKey_Impl& r1,
48 const StyleNameKey_Impl& r2 ) const;
51 inline size_t StyleNameHash_Impl::operator()( const StyleNameKey_Impl& r ) const
53 std::size_t seed = 0;
54 boost::hash_combine(seed, r.m_nFamily);
55 boost::hash_combine(seed, r.m_aName.hashCode());
56 return seed;
59 inline bool StyleNameHash_Impl::operator()(
60 const StyleNameKey_Impl& r1,
61 const StyleNameKey_Impl& r2 ) const
63 return r1.m_nFamily == r2.m_nFamily && r1.m_aName == r2.m_aName;
66 class StyleMap final :
67 public ::cppu::WeakImplHelper< css::lang::XUnoTunnel>,
68 public std::unordered_map< StyleNameKey_Impl, OUString,
69 StyleNameHash_Impl, StyleNameHash_Impl >
72 public:
74 StyleMap();
75 virtual ~StyleMap() override;
77 // XUnoTunnel
78 UNO3_GETIMPLEMENTATION_DECL(StyleMap)
81 #endif // INCLUDED_XMLOFF_INC_STYLEMAP_HXX
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */