We bake cookies in your browser for a better experience. Using this site means that you consent. Read More
The QScriptProgram class encapsulates a Qt Script program. More...
The QScriptProgram class encapsulates a Qt Script program.
QScriptProgram retains the compiled representation of the script if possible. Thus, QScriptProgram can be used to evaluate the same script multiple times more efficiently.
QScriptEngine engine; QScriptProgram program("1 + 2"); QScriptValue result = engine.evaluate(program);
Constructs a null QScriptProgram.
Constructs a new QScriptProgram with the given sourceCode, fileName and firstLineNumber.
Constructs a new QScriptProgram that is a copy of other.
Destroys this QScriptProgram.
Returns the filename associated with this program.
Returns the line number associated with this program.
Returns true if this QScriptProgram is null; otherwise returns false.
Returns the source code of this program.
Returns true if this QScriptProgram is not equal to other; otherwise returns false.
Assigns the other value to this QScriptProgram.
Returns true if this QScriptProgram is equal to other; otherwise returns false.
© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.