1
0
Fork 0
VideoPlayer/src/qmldebugger.h
2018-12-22 19:32:30 +00:00

16 lines
293 B
C++

#ifndef QMLDEBUGGER_H
#define QMLDEBUGGER_H
#include <QObject>
#include <QQuickItem>
class QMLDebugger : public QObject
{
Q_OBJECT
public:
Q_INVOKABLE static QString properties(QQuickItem* item,
bool linebreak = true);
};
#endif // QMLDEBUGGER_H