I'm trying to make an operator that will allow me to add an integer to one of my classes, but I'm having trouble as follows.
struct Base
{
//Will have value of zero
};
struct Derived : public Base
{
int value_;
};
int & operator+=(int & num, Base & b);
int & operator+=(int & num, Derived & d);
With the operator implementation of
int & operator+=(int & num, Base & b)
{
return num;
}
int & operator+=(int & num, Derived & d)
{
num += d.value_;
return num;
}
So I have a vector and I'm trying to iterate through it and add all of the values to one integer. However, even those that are of type Derived won't change the sum.
How can I make the operator overloading polymorphic?
Base... – David Rodríguez - dribeas Apr 7 '12 at 0:32