I want to output two results in a function,so I define it as follows:

bool getData(out QList<float> A,out QList<float> B)
{
}

but error occur:
error C2061: syntax error : identifier'out'.
How to define 'out' para in a funtion?
thank you.