root/include/esfem_fwd.h

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

INCLUDED FROM


   1 /*! \file esfem_fwd.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) 26. 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 26.01.2016
  15      Copyright (c) 2016 Christian Power.  All rights reserved.
  16  */
  17 
  18 #ifndef ESFEM_FWD_H
  19 #define ESFEM_FWD_H 
  20 
  21 namespace Esfem{
  22   namespace Io{
  23     class Parameter;
  24     class L2H1_calculator;
  25     class Error_stream;
  26     class Paraview;
  27     namespace Dgf{
  28       class Handler;
  29     }
  30   }
  31   namespace Grid{
  32     class Deformation;
  33     class Grid_and_time;
  34     class Scal_FEfun;
  35     class Vec_FEfun;
  36   }
  37   namespace SecOrd_op{
  38     class Identity;
  39     class Init_data;
  40     class Init_data_u;
  41     class Init_data_w;
  42     class Rhs;
  43     class Rhs_u;
  44     class Rhs_w;
  45     class Linear_heat;
  46     class Brusselator;
  47   }
  48   namespace Impl{
  49     class Evolving_grid;
  50     namespace hash{
  51       class grid;
  52     }
  53   }
  54   enum class Growth {promoting, inhibiting};
  55 }
  56 
  57 #endif // ESFEM_FWD_H
  58 
  59 /*! Log:
  60  */

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