Hello All,
Could anybody answer me also. Is the Q_PARAMETER the way to do the following:
megaInst.priority = MyClass::VeryHigh;
megaInst.priority = MyClass::VeryHigh;
To copy to clipboard, switch view to plain text mode
or it always have to be
megaInst.setPriority(MyClass::VeryHigh);
megaInst.setPriority(MyClass::VeryHigh);
To copy to clipboard, switch view to plain text mode
(I mean a variable imitation but not function call). If not, what a purpose of Q_PROPERTY if you have to reach property as function?
Or is there any other way to do that? 
Thanks
Bookmarks