Changeset 973c03 for molecuilder/src/Descriptors/AtomDescriptor.hpp
- Timestamp:
- Feb 8, 2010, 4:23:03 PM (16 years ago)
- Children:
- 323177
- Parents:
- 86b917
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Descriptors/AtomDescriptor.hpp
r86b917 r973c03 9 9 #define ATOMDESCRIPTOR_HPP_ 10 10 11 #include<vector> 12 #include<map> 11 12 #include <vector> 13 #include <map> 14 #include <boost/shared_ptr.hpp> 13 15 #include "World.hpp" 14 16 … … 18 20 { 19 21 public: 22 23 typedef boost::shared_ptr<AtomDescriptor> desc_ptr; 24 20 25 friend atom* World::getAtom(AtomDescriptor& descriptor); 21 26 friend std::vector<atom*> World::getAllAtoms(AtomDescriptor& descriptor); … … 23 28 AtomDescriptor(); 24 29 virtual ~AtomDescriptor(); 30 AtomDescriptor(const AtomDescriptor&); 31 32 virtual bool predicate(std::pair<int,atom*>)=0; 33 // clone is only used internally to generate operators 34 virtual desc_ptr clone() const=0; 25 35 26 36 protected: 27 virtual atom* find() =0;28 virtual std::vector<atom*> findAll() =0;37 virtual atom* find(); 38 virtual std::vector<atom*> findAll(); 29 39 std::map<int,atom*>& getAtoms(); 30 40 }; 31 41 32 class AtomPredicateDescriptor : public AtomDescriptor{ 42 class AtomAndDescriptor : public AtomDescriptor 43 { 44 friend AtomAndDescriptor operator&&(const AtomDescriptor &lhs, const AtomDescriptor &rhs); 33 45 public: 34 Atom PredicateDescriptor();35 virtual ~AtomPredicateDescriptor();46 AtomAndDescriptor(const AtomAndDescriptor&); 47 ~AtomAndDescriptor(); 36 48 37 protected: 38 virtual atom *find(); 39 virtual std::vector<atom*> findAll(); 40 virtual bool predicate(std::pair<int,atom*>)=0; 49 virtual desc_ptr clone() const; 50 virtual bool predicate(std::pair<int,atom*>); 51 52 private: 53 desc_ptr lhs; 54 desc_ptr rhs; 55 56 // private constructor to enforce construction through operators 57 AtomAndDescriptor(const AtomDescriptor &_lhs, const AtomDescriptor &_rhs); 41 58 }; 42 59 60 class AtomOrDescriptor : public AtomDescriptor 61 { 62 friend AtomOrDescriptor operator||(const AtomDescriptor &lhs, const AtomDescriptor &rhs); 63 public: 64 AtomOrDescriptor(const AtomOrDescriptor &); 65 ~AtomOrDescriptor(); 66 67 virtual desc_ptr clone() const; 68 virtual bool predicate(std::pair<int,atom*>); 69 70 private: 71 desc_ptr lhs; 72 desc_ptr rhs; 73 74 // private constructor to enforce construction through operators 75 AtomOrDescriptor(const AtomDescriptor &_lhs, const AtomDescriptor &_rhs); 76 }; 77 78 class AtomNotDescriptor : public AtomDescriptor 79 { 80 friend AtomNotDescriptor operator!(const AtomDescriptor &arg); 81 public: 82 AtomNotDescriptor(const AtomNotDescriptor &); 83 ~AtomNotDescriptor(); 84 85 virtual desc_ptr clone() const; 86 virtual bool predicate(std::pair<int,atom*>); 87 88 private: 89 desc_ptr arg; 90 91 // protected constructor to enforce construction through operators 92 AtomNotDescriptor(const AtomDescriptor &_arg); 93 }; 94 95 // no true short circuit, but the test of the second descriptor wont be done 96 AtomAndDescriptor operator&&(const AtomDescriptor &lhs, const AtomDescriptor &rhs); 97 AtomOrDescriptor operator||(const AtomDescriptor &lhs, const AtomDescriptor &rhs); 98 AtomNotDescriptor operator!(const AtomDescriptor &arg); 99 43 100 #endif /* ATOMDESCRIPTOR_HPP_ */
Note:
See TracChangeset
for help on using the changeset viewer.