Arcane  v3.14.10.0
Documentation utilisateur
Chargement...
Recherche...
Aucune correspondance
DotNetRuntimeInitialisationInfo.h
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/* DotNetRuntimeInitialisationInfo.h (C) 2000-2020 */
9/* */
10/* Informations pour l'initialisation du runtime '.Net'. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_UTILS_DOTNETRUNTIMEINITIALISATIONINFO_H
13#define ARCANE_UTILS_DOTNETRUNTIMEINITIALISATIONINFO_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18#include "arcane/utils/PropertyDeclarations.h"
19
20/*---------------------------------------------------------------------------*/
21/*---------------------------------------------------------------------------*/
22
23namespace Arcane
24{
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
28/*!
29 * \brief Informations pour l'initialisation du runtime '.Net'.
30 */
31class ARCANE_CORE_EXPORT DotNetRuntimeInitialisationInfo
32{
33 ARCANE_DECLARE_PROPERTY_CLASS(DotNetRuntimeInitialisationInfo);
34 private:
35 class Impl;
36 public:
37
42
43 public:
44
45 void setIsUsingDotNetRuntime(bool v);
46 bool isUsingDotNetRuntime() const;
47
48 void setMainAssemblyName(StringView name);
49 String mainAssemblyName() const;
50
51 void setExecuteClassName(StringView name);
52 String executeClassName() const;
53
54 void setExecuteMethodName(StringView name);
55 String executeMethodName() const;
56
57 //! Nom du runtime pour le mode embarqué ('mono' ou 'coreclr')
58 void setEmbeddedRuntime(StringView name);
59 String embeddedRuntime() const;
60
61 private:
62
63 Impl* m_p;
64};
65
66/*---------------------------------------------------------------------------*/
67/*---------------------------------------------------------------------------*/
68
69} // End namespace Arcane
70
71/*---------------------------------------------------------------------------*/
72/*---------------------------------------------------------------------------*/
73
74#endif
75
Déclarations des types utilisés dans Arcane.
Informations pour l'initialisation du runtime '.Net'.
Vue sur une chaîne de caractères UTF-8.
Definition StringView.h:47
Chaîne de caractères unicode.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-