I'm a newbie here, when it comes to C++, but i know how to make functions that overloads each other. I've heard you can overload operators too for isntance
Code:
Cls1 Obj1;
Cls2 Obj2;

Obj1 = Obj2;
Obj1 = Obj1 + Obj2 / Obj1 * Obj1;
Obj1 += Obj2;
how do i achieve this?