G
Gernot Frisch
class A
{
struct DATA
{
std::vector<std::string> descriptions, units;
std::vector<double> values;
std::string type, name;
} elalin;
}
Do I need to explicitly write an = operator for 'A' and/or for 'DATA'
?
The operator should call the '=' operator for each member.
Thank you,
{
struct DATA
{
std::vector<std::string> descriptions, units;
std::vector<double> values;
std::string type, name;
} elalin;
}
Do I need to explicitly write an = operator for 'A' and/or for 'DATA'
?
The operator should call the '=' operator for each member.
Thank you,