13#ifndef DUMUX_DISCRETIZATION_GRID_VARIABLES_HH 
   14#define DUMUX_DISCRETIZATION_GRID_VARIABLES_HH 
   30template<
class GG, 
class X>
 
   44    template<
class... Args>
 
   47    : ParentType(std::forward<Args>(args)...)
 
 
   53    { 
return *gridGeometry_; }
 
 
   56    std::shared_ptr<const GridGeometry> gridGeometry_;
 
 
GridVariables(std::shared_ptr< const GridGeometry > gridGeometry, Args &&... args)
Constructor from a grid geometry. The remaining arguments must be valid arguments for the constructio...
Definition experimental/discretization/gridvariables.hh:45
GG GridGeometry
export the grid geometry type
Definition experimental/discretization/gridvariables.hh:38
const GridGeometry & gridGeometry() const
Return a reference to the grid geometry.
Definition experimental/discretization/gridvariables.hh:52
Variables()
Default constructor.
Definition variables.hh:63
Definition experimental/assembly/cclocalassembler.hh:36
Class that represents the variables of a model. We assume that models are formulated on the basis of ...