root/include/io_paraview.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /*! \file io_paraview.h
   2 
   3     \brief <Program Name>
   4 
   5      Revision history:
   6 
   7           Revised by Christian Power dd.mm.yyyy
   8           Originally written by Christian Power
   9                (power22c@gmail.com) 31. Januar 2016
  10 
  11      This programm implements a basic expression calculator.
  12      Input from cin; output to cout.  The grammar for input is: etc.
  13 
  14      Created by Christian Power on 31.01.2016
  15      Copyright (c) 2016 Christian Power.  All rights reserved.
  16  */
  17 
  18 #ifndef IO_PARAVIEW_H
  19 #define IO_PARAVIEW_H 
  20 
  21 #include <memory>
  22 #include "esfem_fwd.h"
  23 
  24 namespace Esfem{
  25   namespace Io{
  26     class Paraview{
  27     public:
  28       explicit Paraview(const Parameter&, const Grid::Grid_and_time&,
  29                         Grid::Scal_FEfun&, Grid::Scal_FEfun&,
  30                         const int refinement_label = 0);
  31       ~Paraview();
  32       Paraview(const Paraview&) = delete;
  33       Paraview& operator=(const Paraview&) = delete;
  34 
  35       void write();
  36     private:
  37       struct Data;
  38       std::unique_ptr<Data> d_ptr;
  39     };
  40   } 
  41 }
  42 
  43 #endif // IO_PARAVIEW_H
  44 
  45 /*! Log:
  46  */

/* [<][>][^][v][top][bottom][index][help] */