mirror of
https://github.com/laurent22/joplin.git
synced 2025-04-26 12:02:59 +02:00
16 lines
288 B
C
16 lines
288 B
C
|
#ifndef QMLUTILS_H
|
||
|
#define QMLUTILS_H
|
||
|
|
||
|
#include <stable.h>
|
||
|
|
||
|
namespace jop {
|
||
|
namespace qmlUtils {
|
||
|
|
||
|
QVariant callQml(QObject* o, const QString &name, const QVariantList &args = QVariantList());
|
||
|
QObject* childFromProperty(QObject* o, const QString& propertyName);
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif // QMLUTILS_H
|