Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
StringUtils.h
Aller à la documentation de ce fichier.
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* StringUtils.h (C) 2000-2022 */
9/* */
10/* Fonctions utilitaires sur les chaînes de caractères. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCCORE_BASE_STRINGUTILS_H
13#define ARCCORE_BASE_STRINGUTILS_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arccore/base/String.h"
18
19#include <vector>
20
21/*---------------------------------------------------------------------------*/
22/*---------------------------------------------------------------------------*/
23
24namespace Arccore::StringUtils
25{
26
27/*---------------------------------------------------------------------------*/
28/*---------------------------------------------------------------------------*/
29
35extern "C++" ARCCORE_BASE_EXPORT std::vector<UChar>
36asUtf16BE(const String& str);
37
38/*---------------------------------------------------------------------------*/
39/*---------------------------------------------------------------------------*/
40
41} // End namespace Arccore::StringUtils
42
43/*---------------------------------------------------------------------------*/
44/*---------------------------------------------------------------------------*/
45
46#endif
ARCCORE_BASE_EXPORT std::vector< UChar > asUtf16BE(const String &str)
Retourne la conversion de l'instance dans l'encodage UTF-16BE.
Definition String.cc:1278