Arcane  4.1.12.0
Developer documentation
Loading...
Searching...
No Matches
IOnlineDebuggerService.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/* IHyodaService.h (C) 2000-2025 */
9/* */
10/* Interface of a hybrid debugger service. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_IHYODA_SERVICE_H
13#define ARCANE_IHYODA_SERVICE_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17// TODO: Move this file to 'arcane/core' because it uses types
18// from 'arcane/core'
19
21
22/*---------------------------------------------------------------------------*/
23/*---------------------------------------------------------------------------*/
24
25namespace Arcane
26{
27class ISubDomain;
28
29/*---------------------------------------------------------------------------*/
30/*---------------------------------------------------------------------------*/
31
39{
40 public:
41
42 virtual ~IOnlineDebuggerService() {}
43
44 public:
45
46 virtual Real loopbreak(ISubDomain*) = 0;
47 virtual Real softbreak(ISubDomain*, const char*, const char*, int) = 0;
48 virtual void hook(ISubDomain*, Real) = 0;
49 virtual void ijval(int, int, int*, int*, double*) = 0;
50};
51
52/*---------------------------------------------------------------------------*/
53/*---------------------------------------------------------------------------*/
54
55} // namespace Arcane
56
57/*---------------------------------------------------------------------------*/
58/*---------------------------------------------------------------------------*/
59
60#endif
Arcane configuration file.
Interface of a hybrid debugger service.
Interface of the subdomain manager.
Definition ISubDomain.h:75
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --
double Real
Type representing a real number.