! * returns the list of all parent aspects (folders and sub-folders) */
| 698 | * returns the list of all parent aspects (folders and sub-folders) |
| 699 | */ |
| 700 | QVector<AbstractAspect*> AbstractAspect::dependsOn() const { |
| 701 | QVector<AbstractAspect*> aspects; |
| 702 | if (parentAspect()) |
| 703 | aspects << parentAspect() << parentAspect()->dependsOn(); |
| 704 | |
| 705 | return aspects; |
| 706 | } |
| 707 | |
| 708 | /*! |
| 709 | * return the list of all aspect types that can be copy&pasted into the current aspect. |
no outgoing calls
no test coverage detected