Is there any nice and simple way to access non QObject-based classes, such as QXmlQuery, QDateTime etc. from Qt Script?
I have compiled Qt for 64-bit architecture under windows and all works fine except QtScript. The following simple code, working perfectly with 32-bit Qt for Windows, crashes if compiled with 64-bit Qt
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
QScriptEngine has evaluate() method that can 开发者_如何转开发be used to load script, execute it and to run a specified function from already loaded script. But how to clear current script and load a
Is it possible to implement a QObject for use in QtScript which overloads [] to implemen开发者_JS百科t lazy array population?