~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to src/shared/qbs/src/lib/buildgraph/rulegraph.h

  • Committer: Timo Jyrinki
  • Date: 2013-11-15 12:25:23 UTC
  • mfrom: (1.1.28)
  • Revision ID: timo.jyrinki@canonical.com-20131115122523-i2kyamsu4gs2mu1m
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
    void remove(Rule *rule);
60
60
    void removeParents(const Rule *rule);
61
61
    void removeSiblings(const Rule *rule);
62
 
    QList<RuleConstPtr> topSort(const RuleConstPtr &rule);
 
62
    QList<RuleConstPtr> topSort(const RuleConstPtr &rule, QSet<const Rule *> *seenRules,
 
63
            QList<const Rule *> *rulePath);
63
64
 
64
65
private:
65
66
    QMap<FileTag, QList<const Rule*> > m_outputFileTagToRule;