$extrastylesheet
#include <single_predicates.h>

Public Member Functions | |
| level (const unsigned int l) | |
| virtual | ~level () |
| virtual bool | operator() (const T &it) const |
Protected Member Functions | |
| virtual predicate< T > * | clone () const |
Protected Attributes | |
| const unsigned int | _level |
Friends | |
| struct | abstract_multi_predicate< T > |
Definition at line 260 of file single_predicates.h.
| libMesh::Predicates::level< T >::level | ( | const unsigned int | l | ) | [inline] |
Definition at line 263 of file single_predicates.h.
: _level(l) {}
| virtual libMesh::Predicates::level< T >::~level | ( | ) | [inline, virtual] |
Definition at line 264 of file single_predicates.h.
{}
| virtual predicate<T>* libMesh::Predicates::level< T >::clone | ( | ) | const [inline, protected, virtual] |
Implements libMesh::Predicates::predicate< T >.
Reimplemented in libMesh::Predicates::not_level< T >.
Definition at line 269 of file single_predicates.h.
{ return new level<T>(*this); }
| virtual bool libMesh::Predicates::level< T >::operator() | ( | const T & | it | ) | const [inline, virtual] |
Implements libMesh::Predicates::predicate< T >.
Reimplemented in libMesh::Predicates::not_level< T >.
Definition at line 266 of file single_predicates.h.
References libMesh::Predicates::level< T >::_level.
{ return (*it)->level() == _level; }
friend struct abstract_multi_predicate< T > [friend, inherited] |
Definition at line 60 of file single_predicates.h.
const unsigned int libMesh::Predicates::level< T >::_level [protected] |
Definition at line 270 of file single_predicates.h.
Referenced by libMesh::Predicates::level< T >::operator()().