24#ifndef DUMUX_DISCRETIZATION_GRID_VARIABLES_HH
25#define DUMUX_DISCRETIZATION_GRID_VARIABLES_HH
40template<
class GG,
class X>
54 template<
class... Args>
63 {
return *gridGeometry_; }
66 std::shared_ptr<const GridGeometry> gridGeometry_;
Definition: variables.hh:32
Class that represents the variables of a model. We assume that models are formulated on the basis of ...
Definition: variables.hh:51
Base class for grid variables.
Definition: discretization/gridvariables.hh:43
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: discretization/gridvariables.hh:55
GG GridGeometry
export the grid geometry type
Definition: discretization/gridvariables.hh:48
const GridGeometry & gridGeometry() const
Return a reference to the grid geometry.
Definition: discretization/gridvariables.hh:62