Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
IEntryPointMng.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2023 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/* IEntryPointMng.h (C) 2000-2023 */
9/* */
10/* Interface du gestionnaire des points d'entrée. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_IENTRYPOINTMNG_H
13#define ARCANE_CORE_IENTRYPOINTMNG_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane
23{
24
25/*---------------------------------------------------------------------------*/
26/*---------------------------------------------------------------------------*/
32{
33 public:
34
35 virtual ~IEntryPointMng() = default;
36
37 public:
38
40 virtual void addEntryPoint(IEntryPoint*) =0;
41
47 virtual IEntryPoint* findEntryPoint(const String& s) =0;
48
54 virtual IEntryPoint* findEntryPoint(const String& module_name,const String& s) =0;
55
57 virtual void dumpList(std::ostream& o) =0;
58
61};
62
63/*---------------------------------------------------------------------------*/
64/*---------------------------------------------------------------------------*/
65
66}
67
68/*---------------------------------------------------------------------------*/
69/*---------------------------------------------------------------------------*/
70
71#endif
72
Déclarations des types généraux de Arcane.
Interface du gestionnaire de point d'entrée.
virtual IEntryPoint * findEntryPoint(const String &s)=0
Point d'entrée de nom s.
virtual void addEntryPoint(IEntryPoint *)=0
Ajoute un point d'entrée au gestionnaire.
virtual EntryPointCollection entryPoints()=0
Liste des points d'entrées.
virtual void dumpList(std::ostream &o)=0
Affiche dans \o la liste des points d'entrée du gestionnaire.
virtual ~IEntryPointMng()=default
Libère les ressources.
virtual IEntryPoint * findEntryPoint(const String &module_name, const String &s)=0
Point d'entrée de nom s du module de nom module_name.
Interface d'un point d'entrée d'un module.
Definition IEntryPoint.h:34
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Chaîne de caractères unicode.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-