MCPcopy Create free account
hub / github.com/TheAssassin/AppImageLauncher / QDirComparator

Class QDirComparator

src/shared/types.h:9–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7#include <QDir>
8
9struct QDirComparator {
10public:
11 size_t operator()(const QDir& a, const QDir& b) const {
12 return a.absolutePath() < b.absolutePath();
13 }
14};
15
16typedef std::set<QDir, QDirComparator> QDirSet;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected