Toolbox Qt
Loading...
Searching...
No Matches
qmlhelper.h
1#ifndef QMLHELPER_H
2#define QMLHELPER_H
3
4#include "toolboxqt/toolboxqt_global.h"
5
6#include <QObject>
7
8namespace tbq
9{
10
11class TOOLBOXQT_EXPORT QmlHelper : public QObject
12{
13 Q_OBJECT
14
15public:
16 explicit QmlHelper(QObject *parent = nullptr);
17
18public:
19 Q_INVOKABLE bool qtVersionCheck(int major, int minor, int patch) const;
20};
21
22} // namespace tbq
23
24#endif // QMLHELPER_H
Class containing multiple helpful methods that can be used in QML.
Definition: qmlhelper.h:12