QString Commands =
"
list List available controllers
show Controller information
select Select default controller
devices List available devices
";
The above code gives
missing terminating character “; error
My task is JUST to assign all space separated text (words) as a QString variable.
It does not have to be Qt variable, plain string would be OK.
It is impractical to modify the text, by adding ANY additional characters.
I can do the analysis after I have the plain text assigned.
This assignment works just fine:
QString Command_Test = ” list , List available controllers”;