$extrastylesheet
#include <single_predicates.h>

Public Member Functions | |
| subdomain (const subdomain_id_type sid) | |
| virtual | ~subdomain () |
| virtual bool | operator() (const T &it) const |
Protected Member Functions | |
| virtual predicate< T > * | clone () const |
Protected Attributes | |
| const subdomain_id_type | _subdomain |
Friends | |
| struct | abstract_multi_predicate< T > |
Definition at line 328 of file single_predicates.h.
| libMesh::Predicates::subdomain< T >::subdomain | ( | const subdomain_id_type | sid | ) | [inline] |
Definition at line 331 of file single_predicates.h.
: _subdomain(sid) {}
| virtual libMesh::Predicates::subdomain< T >::~subdomain | ( | ) | [inline, virtual] |
Definition at line 332 of file single_predicates.h.
{}
| virtual predicate<T>* libMesh::Predicates::subdomain< T >::clone | ( | ) | const [inline, protected, virtual] |
Implements libMesh::Predicates::predicate< T >.
Definition at line 338 of file single_predicates.h.
{ return new subdomain<T>(*this); }
| virtual bool libMesh::Predicates::subdomain< T >::operator() | ( | const T & | it | ) | const [inline, virtual] |
Implements libMesh::Predicates::predicate< T >.
Definition at line 335 of file single_predicates.h.
References libMesh::Predicates::subdomain< T >::_subdomain.
{ return (*it)->subdomain_id() == _subdomain; }
friend struct abstract_multi_predicate< T > [friend, inherited] |
Definition at line 60 of file single_predicates.h.
const subdomain_id_type libMesh::Predicates::subdomain< T >::_subdomain [protected] |
Definition at line 339 of file single_predicates.h.
Referenced by libMesh::Predicates::subdomain< T >::operator()().