#ifndef COMPLEX_H #define COMPLEX_H class Complex { private: double real; double imaginary; public: Complex(double real, double imaginary); double getReal() const; double getImaginary() const; Complex operator+(const Complex& other) const; }; #endif