bump product version to 5.0.4.1
[LibreOffice.git] / i18npool / inc / transliteration_caseignore.hxx
blob2949cabc21846068baed37adf868178856c74c13
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 .
19 #ifndef INCLUDED_I18NPOOL_INC_TRANSLITERATION_CASEIGNORE_HXX
20 #define INCLUDED_I18NPOOL_INC_TRANSLITERATION_CASEIGNORE_HXX
22 #define TRANSLITERATION_UPPER_LOWER
23 #include "transliteration_body.hxx"
25 namespace com { namespace sun { namespace star { namespace i18n {
27 class Transliteration_caseignore: public Transliteration_body
29 public:
30 Transliteration_caseignore();
32 // Methods which are shared.
33 sal_Int16 SAL_CALL getType() throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
35 void SAL_CALL loadModule( TransliterationModules modName, const com::sun::star::lang::Locale& rLocale )
36 throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
38 com::sun::star::uno::Sequence< OUString > SAL_CALL transliterateRange(
39 const OUString& str1, const OUString& str2 )
40 throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
42 sal_Bool SAL_CALL equals(
43 const OUString& str1, sal_Int32 pos1, sal_Int32 nCount1, sal_Int32& nMatch1,
44 const OUString& src2, sal_Int32 pos2, sal_Int32 nCount2, sal_Int32& nMatch2)
45 throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
47 sal_Int32 SAL_CALL compareSubstring(
48 const OUString& s1, sal_Int32 off1, sal_Int32 len1,
49 const OUString& s2, sal_Int32 off2, sal_Int32 len2)
50 throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
52 sal_Int32 SAL_CALL compareString(
53 const OUString& s1,
54 const OUString& s2)
55 throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
57 protected:
58 TransliterationModules moduleLoaded;
59 private:
60 sal_Int32 SAL_CALL compare(
61 const OUString& str1, sal_Int32 pos1, sal_Int32 nCount1, sal_Int32& nMatch1,
62 const OUString& str2, sal_Int32 pos2, sal_Int32 nCount2, sal_Int32& nMatch2)
63 throw(com::sun::star::uno::RuntimeException);
66 } } } }
68 #endif
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */