const QString &a
関数の外部への参照を取得しようとしています。
void function(const QString &a)
{
//code
}
void otherFunction()
{
// code <<<<<
// I'm unsure how I would be able to get a reference to
// const QString &a here and use it.
}
への参照を取得するにはどうすればよいa
ですotherFunction
か?