Image

Imagechumducky wrote in Imagecpp puzzled

A technical question...

Technically, what is the difference between a pure abstract function implemented as:

virtual string *Caston (string username, string password) const =0;

and one implemented:

virtual string *Caston (string username, string password) =0;

What is the functional effect of the added const keyword?

Qvacks?