Arcane  v3.16.4.0
Documentation utilisateur
Chargement...
Recherche...
Aucune correspondance
IPhysicalUnitSystemService.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2025 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/* IPhysicalUnitSystemService.h (C) 2000-2025 */
9/* */
10/* Interface d'un service gérant un système d'unité. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_IPHYSICALUNITSYSTEMSERVICE_H
13#define ARCANE_CORE_IPHYSICALUNITSYSTEMSERVICE_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane
23{
24
25/*---------------------------------------------------------------------------*/
26/*---------------------------------------------------------------------------*/
27/*!
28 * \internal
29 * \brief Interface d'un service gérant un système d'unité.
30 */
31class ARCANE_CORE_EXPORT IPhysicalUnitSystemService
32{
33 public:
34
35 virtual ~IPhysicalUnitSystemService() = default; //!< Libère les ressources.
36
37 public:
38
39 virtual void build() =0;
40
41 public:
42
43 /*!
44 * \brief Crée un système d'unité pour le Système International SI.
45 */
47
48 private:
49};
50
51/*---------------------------------------------------------------------------*/
52/*---------------------------------------------------------------------------*/
53} // namespace Arcane
54
55/*---------------------------------------------------------------------------*/
56/*---------------------------------------------------------------------------*/
57
58#endif
59
Déclarations des types généraux de Arcane.
virtual ~IPhysicalUnitSystemService()=default
Libère les ressources.
virtual IPhysicalUnitSystem * createStandardUnitSystem()=0
Crée un système d'unité pour le Système International SI.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-