Arcane  4.1.12.0
User documentation
Loading...
Searching...
No Matches
IDataReaderWriter.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/* IDataReaderWriter.h (C) 2000-2025 */
9/* */
10/* Interface for reading/writing variable data. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_IDATAREADERWRITER_H
13#define ARCANE_CORE_IDATAREADERWRITER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/core/IDataReader.h"
18#include "arcane/core/IDataWriter.h"
19
20/*---------------------------------------------------------------------------*/
21/*---------------------------------------------------------------------------*/
22
23namespace Arcane
24{
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
28
29/*!
30 * \ingroup IO
31 * \brief Interface for reading/writing variable data.
32 *
33 * \sa IDataWriter, IDataReader
34 */
35class ARCANE_CORE_EXPORT IDataReaderWriter
36: public IDataReader
37, public IDataWriter
38{
39 public:
40
41 virtual void free() = 0;
42};
43
44/*---------------------------------------------------------------------------*/
45/*---------------------------------------------------------------------------*/
46
47} // namespace Arcane
48
49/*---------------------------------------------------------------------------*/
50/*---------------------------------------------------------------------------*/
51
52#endif
Interface for reading/writing variable data.
Interface for reading variable data.
Definition IDataReader.h:35
Interface for writing variable data.
Definition IDataWriter.h:45
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --