<<<Index>>>

Static member functions



// point.h
class Point
{
    static int m_x_origin;
    static int m_y_origin;
    static void set_origin( int x_, int y_ );
    //...
};

// point.cpp
void Point::set_origin( int x_, int y_ )
{
    m_x_origin = x_;
    m_y_origin = y_;
}

<<<Index>>>