Class complex;
Complex operator+(complex &, complex &);
Complex operator +(int i, complex &);
Complex operator+(complex &, int i);
Just add it before the class definition.