Sha256: 84a75f6afcc7ed601bae37005f50d48ee31f4a9d0b4cc40ebf191ce2d813214a
Contents?: true
Size: 460 Bytes
Versions: 31
Compression:
Stored size: 460 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(QString &functionName, QStringList &arguments, QObject *parent = 0); QString &functionName(); QStringList &arguments(); private: QString m_functionName; QStringList m_arguments; };
Version data entries
31 entries across 31 versions & 4 rubygems