Loading...
Searching...
No Matches
ObjectMatches.hpp
1#pragma once
2#include <QObject>
3
4template <typename T>
5struct matches
6{
7 bool operator()(const QObject* obj) { return dynamic_cast<const T*>(obj); }
8};
9
15using Priority = int32_t;
Definition ObjectMatches.hpp:6