hi there. I have included Q_PROPERTY in my class and it works fine but I don't know how to retrieve member variable data using Q_PROPERTY instead of getters.
this is how the property looks like
Qt Code:
  1. Q_PROPERTY(QString client_name READ getClientName);
To copy to clipboard, switch view to plain text mode 
I want to use reflective programming to get the client's name. HOW CAN I DO THIS?