<<<Index>>>

Calling static member functions



#include "point.h"

void main()
{
    // Correct, but confusing:
    // suggests that p is somehow involved:
    Point p;
    p.set_origin( 0, 0 );

    // Better:
    Point::set_origin( 0, 0 );
}
<<<Index>>>