Arcane  4.1.12.0
Developer documentation
Loading...
Searching...
No Matches
BasicModule.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/* BasicModule.h (C) 2000-2025 */
9/* */
10/* Basic module with mesh information. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_BASICMODULE_H
13#define ARCANE_CORE_BASICMODULE_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/core/AbstractModule.h"
18#include "arcane/core/MeshAccessor.h"
19#include "arcane/core/CommonVariables.h"
20
21/*---------------------------------------------------------------------------*/
22/*---------------------------------------------------------------------------*/
23
24namespace Arcane
25{
26
27/*---------------------------------------------------------------------------*/
28/*---------------------------------------------------------------------------*/
29
38class ARCANE_CORE_EXPORT BasicModule
39: public AbstractModule
40, public MeshAccessor
41, public CommonVariables
42{
43 protected:
44
46 explicit BasicModule(const ModuleBuildInfo&);
47
48 public:
49
51 ~BasicModule() override;
52};
53
54/*---------------------------------------------------------------------------*/
55/*---------------------------------------------------------------------------*/
56
57} // namespace Arcane
58
59/*---------------------------------------------------------------------------*/
60/*---------------------------------------------------------------------------*/
61
62#endif
AbstractModule(const ModuleBuildInfo &)
Constructor from a ModuleBuildInfo.
BasicModule(const ModuleBuildInfo &)
Constructor from a ModuleBuildInfo.
CommonVariables(IModule *c)
Constructs the references of the common variables for the module c.
Information for building a module.
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --