| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

In This Package:

RuleParser::AndRule Class Reference

Logical AND of two owned rules. More...

#include <Rules.h>

Inheritance diagram for RuleParser::AndRule:

[legend]
Collaboration diagram for RuleParser::AndRule:
[legend]
List of all members.

Public Member Functions

 AndRule (std::string n, Rule *a, Rule *b)
virtual ~AndRule ()
virtual bool select (const Queriable *thing)
virtual const std::string & name () const

Protected Attributes

std::string m_name
RulemA
RulemB

Detailed Description

Logical AND of two owned rules.

Definition at line 76 of file Rules.h.


Constructor & Destructor Documentation

RuleParser::AndRule::AndRule ( std::string  n,
Rule a,
Rule b 
) [inline]

Definition at line 79 of file Rules.h.

00080                             : Rule(n,a,b) {};

virtual RuleParser::AndRule::~AndRule (  )  [inline, virtual]

Definition at line 81 of file Rules.h.

00081 {};


Member Function Documentation

virtual bool RuleParser::AndRule::select ( const Queriable thing  )  [inline, virtual]

Implements RuleParser::Rule.

Definition at line 82 of file Rules.h.

00082                                               { 
00083     if(this->mA->select(thing)) return this->mB->select(thing); 
00084     return false;
00085     };

virtual const std::string& RuleParser::Rule::name (  )  const [inline, virtual, inherited]

Definition at line 25 of file Rules.h.

00025 { return m_name; };


Member Data Documentation

std::string RuleParser::Rule::m_name [protected, inherited]

Definition at line 30 of file Rules.h.

Rule* RuleParser::Rule::mA [protected, inherited]

Definition at line 32 of file Rules.h.

Rule* RuleParser::Rule::mB [protected, inherited]

Definition at line 33 of file Rules.h.


The documentation for this class was generated from the following file:
| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

Generated on Mon Apr 11 20:09:15 2011 for RuleParser by doxygen 1.4.7