12#ifndef DUMUX_BOUNDARY_FLAG_HH
13#define DUMUX_BOUNDARY_FLAG_HH
29 : flag_(std::numeric_limits<std::size_t>::max()) {}
31 template<
class Intersection>
33 : flag_(std::numeric_limits<std::size_t>::max())
36 flag_ = i.boundarySegmentIndex();
Boundary flag to store e.g. in sub control volume faces.
Definition: boundaryflag.hh:55
Class for accessing boundary flags.
Definition: boundaryflag.hh:26
std::size_t value_type
Definition: boundaryflag.hh:39
BoundarySegmentIndexFlag(const Intersection &i)
Definition: boundaryflag.hh:32
BoundarySegmentIndexFlag()
Definition: boundaryflag.hh:28
value_type get() const
Definition: boundaryflag.hh:41