There is in Qt such functionality: QMetaObject::invokeMethod(QObject * obj, const char * member, ...), which invokes method from string (member). How can I do the same (or similar)? Thanks)
There is in Qt such functionality: QMetaObject::invokeMethod(QObject * obj, const char * member, …)
Share
You can’t do this in pure c++, but you can read about reflection/introspect in c++ in this question