Changeset 1060 for code/trunk/src
- Timestamp:
- Apr 14, 2008, 2:22:59 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/Identifier.cc
r1059 r1060 173 173 bool Identifier::isChildOf(const Identifier* identifier) const 174 174 { 175 return (this->parents_.find(identifier) != this-> children_->end());175 return (this->parents_.find(identifier) != this->parents_.end()); 176 176 } 177 177 … … 182 182 bool Identifier::isDirectChildOf(const Identifier* identifier) const 183 183 { 184 return (this->directParents_.find(identifier) != this-> children_->end());184 return (this->directParents_.find(identifier) != this->directParents_.end()); 185 185 } 186 186 … … 200 200 bool Identifier::isDirectParentOf(const Identifier* identifier) const 201 201 { 202 return (this->directChildren_->find(identifier) != this-> children_->end());202 return (this->directChildren_->find(identifier) != this->directChildren_->end()); 203 203 } 204 204
Note: See TracChangeset
for help on using the changeset viewer.