-
|
Hi! First of all, thank you for this great library! I can't figure out how to get the value of the ItemInput object. I've tried this: I can't find neither and answer in other discussions nor an example code in the wiki, in order to solve the problem. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
You will need to do a static cast, if you're certain that the item at index static_cast<ItemInput*>(pendienteItems[0])->getValue();Also worth looking at the SimpleInput example |
Beta Was this translation helpful? Give feedback.
-
|
It worked! Thank you! |
Beta Was this translation helpful? Give feedback.
You will need to do a static cast, if you're certain that the item at index
0is indeed anItemInputAlso worth looking at the SimpleInput example