Ty.
I have declared an struct, which has a field called name:
struct Ficha{
string name ();
...
}
So, now i´m triyng to do:
Ficha FichaProducto;
...
string nombre(output);//It creates nombre with "output" content.
nombre+=(" ");//It adds a blank space an the end
FichaProducto.name.append(nombre);
, and there C++ message:
Insufficient Contextual information to determine type.