Dune Core Modules (unstable)

backuprestore.hh
1 // SPDX-FileCopyrightText: Copyright © DUNE Project contributors, see file LICENSE.md in module root
2 // SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
3 // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
4 // vi: set et ts=4 sw=2 sts=2:
5 #ifndef DUNE_GRID_COMMON_BACKUPRESTORE_HH
6 #define DUNE_GRID_COMMON_BACKUPRESTORE_HH
7 
9 
10 namespace Dune
11 {
12 
41  template< class Grid >
43  {
51  static void backup ( const Grid &grid, const std::string &filename )
52  {
53  DUNE_THROW( NotImplemented, "backup / restore not implemented." );
54  }
55 
65  static void backup ( const Grid &grid, std::ostream &stream )
66  {
67  DUNE_THROW( NotImplemented, "backup / restore not implemented." );
68  }
69 
78  static Grid *restore ( const std::string &filename )
79  {
80  DUNE_THROW( NotImplemented, "backup / restore not implemented." );
81  }
82 
91  static Grid *restore ( std::istream &stream )
92  {
93  DUNE_THROW( NotImplemented, "backup / restore not implemented." );
94  }
95  };
96 
100  template< class Grid >
101  struct BackupRestoreFacility< const Grid >
102  : public BackupRestoreFacility< Grid >
103  {};
104 
105 } // namespace Dune
106 
107 #endif // #ifndef DUNE_GRID_COMMON_BACKUPRESTORE_HH
Grid abstract base class.
Definition: grid.hh:375
Default exception for dummy implementations.
Definition: exceptions.hh:263
A few common exception classes.
#define DUNE_THROW(E, m)
Definition: exceptions.hh:218
Dune namespace.
Definition: alignedallocator.hh:13
facility for writing and reading grids
Definition: backuprestore.hh:43
static Grid * restore(const std::string &filename)
read a hierarchic grid from disk
Definition: backuprestore.hh:78
static Grid * restore(std::istream &stream)
read a hierarchic grid from a stream
Definition: backuprestore.hh:91
static void backup(const Grid &grid, std::ostream &stream)
write a hierarchic grid into a stream
Definition: backuprestore.hh:65
static void backup(const Grid &grid, const std::string &filename)
write a hierarchic grid to disk
Definition: backuprestore.hh:51
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.80.0 (Apr 27, 22:29, 2024)