How can I declare an operator override in a header and define it in the .cpp?
I am attempting to declare an operator override (ClassName& operator=(const ClassName& rhs)
) within the header file and then define it in the .cpp, but I am running into many different errors.