Google documents

As some of you probably know, Google provides an “on-line office” - AJAX-based web application, which allows you to edit formatted text …

"Const-ness" in C++

In C++ you can declare class methods as

const

. The idea is that a

const

method does not change the value of instance’ member variables (and …