Changeset 98a2987 for molecuilder/src/Descriptors/AtomDescriptor.cpp
- Timestamp:
- Feb 26, 2010, 12:40:52 PM (16 years ago)
- Children:
- e65cc0
- Parents:
- 33bc66
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Descriptors/AtomDescriptor.cpp
r33bc66 r98a2987 97 97 {} 98 98 99 bool AtomAllDescriptor_impl::predicate(std::pair< int,atom*>){99 bool AtomAllDescriptor_impl::predicate(std::pair<atomId_t,atom*>){ 100 100 return true; 101 101 } … … 111 111 {} 112 112 113 bool AtomNoneDescriptor_impl::predicate(std::pair< int,atom*>){113 bool AtomNoneDescriptor_impl::predicate(std::pair<atomId_t,atom*>){ 114 114 return false; 115 115 } … … 129 129 {} 130 130 131 bool AtomAndDescriptor_impl::predicate(std::pair< int,atom*> atom){131 bool AtomAndDescriptor_impl::predicate(std::pair<atomId_t,atom*> atom){ 132 132 return lhs->predicate(atom) && rhs->predicate(atom); 133 133 } … … 145 145 } 146 146 147 bool AtomOrDescriptor_impl::predicate(std::pair< int,atom*> atom){147 bool AtomOrDescriptor_impl::predicate(std::pair<atomId_t,atom*> atom){ 148 148 return lhs->predicate(atom) || rhs->predicate(atom); 149 149 } … … 165 165 } 166 166 167 bool AtomNotDescriptor_impl::predicate(std::pair< int,atom*> atom){167 bool AtomNotDescriptor_impl::predicate(std::pair<atomId_t,atom*> atom){ 168 168 return !(arg->predicate(atom)); 169 169 }
Note:
See TracChangeset
for help on using the changeset viewer.