T
Timothy Madden
Hello
If I write a function like this
void Process(double Data[])
{ ... }
it is ok, but if I try
class DataProcess
{
double (&Data)[];
DataProcess(double Data[])
ata(Data)
{ }
};
I get a compile error.
What's the difference between the argument array and the data-member array,
apart from syntax ?
Thank you
Timothy Madden
Romania
If I write a function like this
void Process(double Data[])
{ ... }
it is ok, but if I try
class DataProcess
{
double (&Data)[];
DataProcess(double Data[])
ata(Data)
{ }
};
I get a compile error.
What's the difference between the argument array and the data-member array,
apart from syntax ?
Thank you
Timothy Madden
Romania