acceptsGroups
virtual bool acceptsGroups() const;
This function may be overridden if needed.
The default implementation returns false
. This function should return whether the StatisticOutput supports named collections of statistics called Statistic Groups.
Parameters
- returns (bool) Whether the output object supports statistic groups
Example
bool acceptsGroups() const override
{
return true;
}
Header
#include <sst/core/statapi/statoutput.h>