Wanted: sample code for badge signalling                
                Hello, I tried to use Badge signalling, but with no success.
The project template creates a method CreateBadgeCountPresenceMonitor in the AppInstance class that looks like
void Foo::CreateBadgeCountPresenceMonitor(BadgeCountSignaling * signaling, int call, const char* user, const char* topic) {
    new FooBadgeCountPresenceMonitor(this, signaling, call, user, topic);
}
 
When I set breakpoints to this line or to lines in FooBadgeCountPresenceMonitor it never stops there. Is this used for badges?
Or in general: Is there an example how to show a badge with a number or letters on an application icon in the AppClient?


