aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qt4projectmanager/findqt4profiles.h
blob: dbe0082a9a5fca8b1ac719e334343b9bb5874ed8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef FINDQT4PROFILES_H
#define FINDQT4PROFILES_H

#include <projectexplorer/nodesvisitor.h>

namespace Qt4ProjectManager {
namespace Internal {

class Qt4ProFileNode;

class FindQt4ProFiles: protected ProjectExplorer::NodesVisitor {

public:
    QList<Qt4ProFileNode *> operator()(ProjectExplorer::ProjectNode *root);
protected:
    virtual void visitProjectNode(ProjectExplorer::ProjectNode *projectNode);
private:
    QList<Qt4ProFileNode *> m_proFiles;
};

} // namespace Internal
} // namespace Qt4ProjectManager

#endif // FINDQT4PROFILES_H