Arcane  4.1.12.0
User documentation
Loading...
Searching...
No Matches
IProfiler.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2026 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/* IProfiler.h (C) 2000-2025 */
9/* */
10/* Interface of the message exchange manager. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCCORE_MESSAGEPASSING_IPROFILER_H
13#define ARCCORE_MESSAGEPASSING_IPROFILER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
23{
24
25/*---------------------------------------------------------------------------*/
26/*---------------------------------------------------------------------------*/
27
28/*!
29 * \brief Interface of a profiler for message exchanges.
30 */
31class ARCCORE_MESSAGEPASSING_EXPORT IProfiler
32{
33 public:
34
35 virtual ~IProfiler() = default;
36};
37
38/*---------------------------------------------------------------------------*/
39/*---------------------------------------------------------------------------*/
40
41} // namespace Arcane::MessagePassing
42
43/*---------------------------------------------------------------------------*/
44/*---------------------------------------------------------------------------*/
45
46#endif
General declarations for the 'message_passing' component.
Interface of a profiler for message exchanges.
Definition IProfiler.h:32
Declarations of types and methods used by message exchange mechanisms.