Enables the application to increase the counter value for an Event object. The getCount function may be called to obtain the current value of the Event object counter.
void recordEvent([optional] unsigned int value);
Listener *listener = new Listener("sampleApp", "4.0",
NULL, false);
Container *store = listener->lookupContainer("storeName");
Event *creations = store->lookupEvent("document creations");
creations->recordEvent(10);
...