Something like this:
class someclass
{
public:
someclass();
~someclass();
long Set(int x, int y);
private:
int _x;
int _y;
};
long Set(int x, int y)
{
_x = x;
_y = y;
}
But if you just write something like this, the _x cannot be recognized inside Set() function. So how do I setting the private properties of a class using its own methods? Thanks a lot.