ok, so in my code I have a piece of line that looks like... this...
const cLinkedStrings operator +(const cLinkedStrings& CLS2) const;
ok, so what it does is overloads the + operator for adding objects of type cLinkedStrings. No sweat there, however the prototype has me wondering... what exactly is that last "const" there for? Nobody explained it in class, and the books I have don't explain it either, they just do it. Maybe I'm just missing out on something obvious here?