| 7 | #include <QDir> |
| 8 | |
| 9 | struct QDirComparator { |
| 10 | public: |
| 11 | size_t operator()(const QDir& a, const QDir& b) const { |
| 12 | return a.absolutePath() < b.absolutePath(); |
| 13 | } |
| 14 | }; |
| 15 | |
| 16 | typedef std::set<QDir, QDirComparator> QDirSet; |
nothing calls this directly
no outgoing calls
no test coverage detected