What does this do in C language and please explain this with simplified example ?
void KidLogic::doCommand()
{ }
What does this do in C language and please explain this with simplified example ?
void KidLogic::doCommand()
{ }
In C, it doesn't mean anything.
This is C++, and it means the KidLogic
namespace or class has a doCommand
function doing nothing.
It looks like C++, not C.
It is a definition of the method doCommand
for class (or namespace) KidLogic
.