$extrastylesheet
#include <single_predicates.h>

Public Member Functions | |
| elem_type (const ElemType t) | |
| virtual | ~elem_type () |
| virtual bool | operator() (const T &it) const |
Protected Member Functions | |
| virtual predicate< T > * | clone () const |
Protected Attributes | |
| const ElemType | _elem_type |
Friends | |
| struct | abstract_multi_predicate< T > |
Definition at line 240 of file single_predicates.h.
| libMesh::Predicates::elem_type< T >::elem_type | ( | const ElemType | t | ) | [inline] |
Definition at line 243 of file single_predicates.h.
: _elem_type(t) {}
| virtual libMesh::Predicates::elem_type< T >::~elem_type | ( | ) | [inline, virtual] |
Definition at line 244 of file single_predicates.h.
{}
| virtual predicate<T>* libMesh::Predicates::elem_type< T >::clone | ( | ) | const [inline, protected, virtual] |
Implements libMesh::Predicates::predicate< T >.
Definition at line 249 of file single_predicates.h.
{ return new elem_type<T>(*this); }
| virtual bool libMesh::Predicates::elem_type< T >::operator() | ( | const T & | it | ) | const [inline, virtual] |
Implements libMesh::Predicates::predicate< T >.
Definition at line 246 of file single_predicates.h.
References libMesh::Predicates::elem_type< T >::_elem_type.
{ return (*it)->type() == _elem_type; }
friend struct abstract_multi_predicate< T > [friend, inherited] |
Definition at line 60 of file single_predicates.h.
const ElemType libMesh::Predicates::elem_type< T >::_elem_type [protected] |
Definition at line 250 of file single_predicates.h.
Referenced by libMesh::Predicates::elem_type< T >::operator()().