Fix a forgotten return of the value
[LibreOffice.git] / i18npool / inc / servicename.hxx
bloba988d31d031d6cf03644361b5c4c0f4c3249f99b
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 Service Name
21 com.sun.star.i18n.Transliteration ... dispatching UNO object and generic methods
22 com.sun.star.i18n.Transliteration.u2l ... upper to lower
23 com.sun.star.i18n.Transliteration.l2u ... lower to upper
24 com.sun.star.i18n.Transliteration.caseignore ... case ignore
25 com.sun.star.i18n.Transliteration.l10n ... other
27 We have to adopt different service name for internal UNO objects.
28 Case related functionality vary depending on Locale.
31 Implementation Name
32 For generic service: com.sun.star.i18n.Transliteration,
33 com.sun.star.i18n.Transliteration
35 com.sun.star.i18n.Transliteration.u2l
36 com.sun.star.i18n.Transliteration.l2u
37 com.sun.star.i18n.Transliteration.caseignore
38 For these there services above,
40 com.sun.star.i18n.Transliteration.ja_JP
41 ^^^^^
42 Locale name
44 For com.sun.star.i18n.l10n.Transliteration service,
45 com.sun.star.i18n.Transliteration.HALFWIDTH_FULLWIDTH,
46 com.sun.star.i18n.Transliteration.FULLWIDTH_HALFWIDTH,
47 com.sun.star.i18n.Transliteration.IGNORE_WIDTH,
48 com.sun.star.i18n.Transliteration.KATAKANA_HIRAGANA,
49 com.sun.star.i18n.Transliteration.HIRAGANA_KATAKANA,
50 com.sun.star.i18n.Transliteration.IGNORE_KANA,
52 ... These objects above can be used in every Locale context.
56 #ifndef INCLUDED_I18NPOOL_INC_SERVICENAME_HXX
57 #define INCLUDED_I18NPOOL_INC_SERVICENAME_HXX
59 #define TRLT_SERVICELNAME "com.sun.star.i18n.Transliteration"
60 #define TRLT_SERVICELNAME_L10N TRLT_SERVICELNAME ".l10n"
62 #define TRLT_IMPLNAME_PREFIX "com.sun.star.i18n.Transliteration."
63 // 1...5...901...5...901...5...901..4 --> 34
65 #endif
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */