|
Teuchos Package Browser (Single Doxygen Collection)
Version of the Day
|
A Not condition returns the result of performing a logical NOT on a given condition. More...
#include <Teuchos_StandardConditions.hpp>

Constructors/Destructor | |
| NotCondition (RCP< const Condition > condition) | |
| Constructs a Not Condition. | |
| virtual | ~NotCondition () |
| Deconstructs a Not Condition. | |
Attribute/Query Functions | |
| RCP< const Condition > | getChildCondition () const |
| Retrieve the child condition. | |
Overridden from Condition | |
| bool | isConditionTrue () const |
| | |
| bool | containsAtLeasteOneParameter () const |
| | |
| Dependency::ConstParameterEntryList | getAllParameters () const |
| | |
| std::string | getTypeAttributeValue () const |
| Get the value that should be used for the condition type attribute when converting a condition to XML. | |
Private Members | |
| RCP< const Condition > | childCondition_ |
A Not condition returns the result of performing a logical NOT on a given condition.
Please see NotConditionConverter for documenation regarding the XML representation of this condition.
Definition at line 752 of file Teuchos_StandardConditions.hpp.
| Teuchos::NotCondition::NotCondition | ( | RCP< const Condition > | condition | ) |
Constructs a Not Condition.
| condition | The condition to be evaluated. |
Definition at line 159 of file Teuchos_StandardConditions.cpp.
| virtual Teuchos::NotCondition::~NotCondition | ( | ) | [inline, virtual] |
Deconstructs a Not Condition.
Definition at line 769 of file Teuchos_StandardConditions.hpp.
| RCP<const Condition> Teuchos::NotCondition::getChildCondition | ( | ) | const [inline] |
Retrieve the child condition.
Definition at line 777 of file Teuchos_StandardConditions.hpp.
| bool Teuchos::NotCondition::isConditionTrue | ( | ) | const [virtual] |
Implements Teuchos::Condition.
Definition at line 174 of file Teuchos_StandardConditions.cpp.
| bool Teuchos::NotCondition::containsAtLeasteOneParameter | ( | ) | const [virtual] |
Implements Teuchos::Condition.
Definition at line 178 of file Teuchos_StandardConditions.cpp.
| Dependency::ConstParameterEntryList Teuchos::NotCondition::getAllParameters | ( | ) | const [virtual] |
Implements Teuchos::Condition.
Definition at line 182 of file Teuchos_StandardConditions.cpp.
| std::string Teuchos::NotCondition::getTypeAttributeValue | ( | ) | const [inline, virtual] |
Get the value that should be used for the condition type attribute when converting a condition to XML.
Implements Teuchos::Condition.
Definition at line 795 of file Teuchos_StandardConditions.hpp.
RCP<const Condition> Teuchos::NotCondition::childCondition_ [private] |
The condition on which to perfrom the logical NOT.
Definition at line 809 of file Teuchos_StandardConditions.hpp.
1.7.6.1