25#ifndef DUMUX_DISCRETIZATION_GRID_VARIABLES_HH
26#define DUMUX_DISCRETIZATION_GRID_VARIABLES_HH
42template<
class GG,
class X>
56 template<
class... Args>
65 {
return *gridGeometry_; }
68 std::shared_ptr<const GridGeometry> gridGeometry_;
Definition: variables.hh:33
Class that represents the variables of a model. We assume that models are formulated on the basis of ...
Definition: variables.hh:53
Base class for grid variables.
Definition: experimental/discretization/gridvariables.hh:45
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:57
GG GridGeometry
export the grid geometry type
Definition: experimental/discretization/gridvariables.hh:50
const GridGeometry & gridGeometry() const
Return a reference to the grid geometry.
Definition: experimental/discretization/gridvariables.hh:64