One of the reasons I see this is because you clearly want to tell other programmers not to use parameters, but leave them in the comments to describe their intentions. I know this doesn't make sense now, but read on.
I will use another example:
class A
{
public:
virtual void foo(int someProperty);
};
class B : public A
{
public:
virtual void foo(int );
};
, , , B::foo() , A::foo() 0. , , B::foo() . . , , " someProperty".
B::foo(int)
{
A::foo(0);
}
( ). - , A::foo() - "someProperty" A.
, .