I\'ve seen methods with the following signature:
void foo (void);
They take no argument, however I\'m wondering whether doing this is usefu
In C++ code there is no reason whatsoever to use void in this way. What's more it is very much not the idiomatic way to declare parameterless functions.