Sha256: 92da6939827e09d6c9d7a1ed83e33d440142007a5c93d27e9f083dcf281ed06c
Contents?: true
Size: 472 Bytes
Versions: 7
Compression:
Stored size: 472 Bytes
Contents
#include <QObject> #include <QString> #include <QStringList> class JavascriptInvocation : public QObject { Q_OBJECT Q_PROPERTY(QString functionName READ functionName) Q_PROPERTY(QStringList arguments READ arguments) public: JavascriptInvocation(const QString &functionName, const QStringList &arguments, QObject *parent = 0); QString &functionName(); QStringList &arguments(); private: QString m_functionName; QStringList m_arguments; };
Version data entries
7 entries across 7 versions & 2 rubygems