I am trying to understand a piece of C++ code and I have come to a point that I don't understand what the following means:
The following is defined in the function prototype file, aka (.h)
What I am perplexed about, is the const parameter:
ofMesh getImageMesh() const;
I mean, the function/method returns a class of ofMesh, getImageMesh() has no parameters and then const follows. Why is "const" used like this?