You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-30 23:44:55 +02:00
16 lines
288 B
C++
Executable File
16 lines
288 B
C++
Executable File
#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
|