Changeset 10373
- Timestamp:
- Apr 18, 2015, 1:09:33 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/libraries/core/class/Identifier.h
r10372 r10373 158 158 bool isDirectParentOf(const Identifier* identifier) const; 159 159 160 /// Returns the direct parents of the class the Identifier belongs to. 161 inline const std::list<const Identifier*>& getDirectParents() const { return this->directParents_; } 160 162 /// Returns the parents of the class the Identifier belongs to. 161 163 inline const std::list<const Identifier*>& getParents() const { return this->parents_; } 164 165 /// Returns the direct children the class the Identifier belongs to. 166 inline const std::set<const Identifier*>& getDirectChildren() const { return this->directChildren_; } 162 167 /// Returns the children of the class the Identifier belongs to. 163 168 inline const std::set<const Identifier*>& getChildren() const { return this->children_; } 164 /// Returns the direct parents of the class the Identifier belongs to.165 inline const std::list<const Identifier*>& getDirectParents() const { return this->directParents_; }166 /// Returns the direct children the class the Identifier belongs to.167 inline const std::set<const Identifier*>& getDirectChildren() const { return this->directChildren_; }168 169 169 170 … … 209 210 210 211 private: 212 std::list<const Identifier*> directParents_; //!< The direct parents of the class the Identifier belongs to (sorted by their order of initialization) 211 213 std::list<const Identifier*> parents_; //!< The parents of the class the Identifier belongs to (sorted by their order of initialization) 214 215 std::set<const Identifier*> directChildren_; //!< The direct children of the class the Identifier belongs to 212 216 std::set<const Identifier*> children_; //!< The children of the class the Identifier belongs to 213 214 std::list<const Identifier*> directParents_; //!< The direct parents of the class the Identifier belongs to (sorted by their order of initialization)215 std::set<const Identifier*> directChildren_; //!< The direct children of the class the Identifier belongs to216 217 217 218 bool bInitialized_; //!< Is true if the Identifier was completely initialized
Note: See TracChangeset
for help on using the changeset viewer.