LCOV - code coverage report
Current view: top level - xmloff/inc/xmloff - i18nmap.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 5 7 71.4 %
Date: 2012-08-25 Functions: 4 6 66.7 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 6 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            : /*************************************************************************
       3                 :            :  *
       4                 :            :  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       5                 :            :  *
       6                 :            :  * Copyright 2000, 2010 Oracle and/or its affiliates.
       7                 :            :  *
       8                 :            :  * OpenOffice.org - a multi-platform office productivity suite
       9                 :            :  *
      10                 :            :  * This file is part of OpenOffice.org.
      11                 :            :  *
      12                 :            :  * OpenOffice.org is free software: you can redistribute it and/or modify
      13                 :            :  * it under the terms of the GNU Lesser General Public License version 3
      14                 :            :  * only, as published by the Free Software Foundation.
      15                 :            :  *
      16                 :            :  * OpenOffice.org is distributed in the hope that it will be useful,
      17                 :            :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      18                 :            :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      19                 :            :  * GNU Lesser General Public License version 3 for more details
      20                 :            :  * (a copy is included in the LICENSE file that accompanied this code).
      21                 :            :  *
      22                 :            :  * You should have received a copy of the GNU Lesser General Public License
      23                 :            :  * version 3 along with OpenOffice.org.  If not, see
      24                 :            :  * <http://www.openoffice.org/license.html>
      25                 :            :  * for a copy of the LGPLv3 License.
      26                 :            :  *
      27                 :            :  ************************************************************************/
      28                 :            : 
      29                 :            : #ifndef _XMLOFF_I18NMAP_HXX
      30                 :            : #define _XMLOFF_I18NMAP_HXX
      31                 :            : 
      32                 :            : #include <sal/config.h>
      33                 :            : #include "xmloff/dllapi.h"
      34                 :            : #include <rtl/ustring.hxx>
      35                 :            : #include <tools/solar.h>
      36                 :            : #include <map>
      37                 :            : 
      38                 :        410 : class SvI18NMapEntry_Key
      39                 :            : {
      40                 :            :     sal_uInt16      nKind;
      41                 :            :     rtl::OUString   aName;
      42                 :            : public:
      43                 :        410 :     SvI18NMapEntry_Key( sal_uInt16 nKnd, const rtl::OUString& rName ) :
      44                 :            :         nKind( nKnd ),
      45                 :        410 :         aName( rName )
      46                 :            :     {
      47                 :        410 :     }
      48                 :            : 
      49                 :            :     sal_Bool operator==( const SvI18NMapEntry_Key& r ) const
      50                 :            :     {
      51                 :            :         return nKind == r.nKind &&
      52                 :            :                aName == r.aName;
      53                 :            :     }
      54                 :            : 
      55                 :          0 :     sal_Bool operator<( const SvI18NMapEntry_Key& r ) const
      56                 :            :     {
      57                 :            :         return nKind < r.nKind ||
      58                 :            :                ( nKind == r.nKind &&
      59 [ #  # ][ #  # ]:          0 :                  aName < r.aName);
                 [ #  # ]
      60                 :            :     }
      61                 :            : };
      62                 :            : 
      63                 :            : typedef std::map<SvI18NMapEntry_Key, rtl::OUString> SvI18NMap_Impl;
      64                 :            : 
      65                 :        126 : class XMLOFF_DLLPUBLIC SvI18NMap
      66                 :            : {
      67                 :            :     SvI18NMap_Impl m_aMap;
      68                 :            : 
      69                 :            : public:
      70                 :            :     // Add a name mapping
      71                 :            :     bool Add( sal_uInt16 nKind, const rtl::OUString& rName,
      72                 :            :               const rtl::OUString& rNewName );
      73                 :            : 
      74                 :            :     // Return a mapped name. If the name could not be found, return the
      75                 :            :     // original name.
      76                 :            :     const rtl::OUString& Get( sal_uInt16 nKind,
      77                 :            :                                 const rtl::OUString& rName ) const;
      78                 :            : };
      79                 :            : 
      80                 :            : #endif  //  _XMLOFF_I18NMAP_HXX
      81                 :            : 
      82                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10