24#ifndef DUMUX_DISCRETIZATION_GRID_VARIABLES_HH
25#define DUMUX_DISCRETIZATION_GRID_VARIABLES_HH
40template<
class GG,
class X>
54 template<
class... Args>
57 : ParentType(std::forward<Args>(args)...)
63 {
return *gridGeometry_; }
66 std::shared_ptr<const GridGeometry> gridGeometry_;
Class that represents the variables of a model. We assume that models are formulated on the basis of ...
Definition variables.hh:32
Variables()
Default constructor.
Definition variables.hh:73
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