I have objects with dynamically generated set of functions. For each object, I can retrieve, at runtime, its sets of functions. This object is inheriting from QObject and is meant to be exposed to the JS Engine. Now, I would like to dynamically add functions to this "javascript QObject". Is this possible? If yes, how?
NOTES:
- I cannot use Q_INVOKABLE in C++ because as far as I know, it is all resolved at compile time.