In C++Phone sample agent desktop application, I am having a problem figuring out how to access the elements of the Arguments array that are returned in OnSkillGroupStatisticsUpdated event. This is what I have:
void CEventSink:

nSkillGroupStatisticsUpdated(Arguments &rArguments) {
string id=rArguments.GetValueString(CTIOS_UNIQUEOBJECTID);
string grNum=rArguments.GetValueString(CTIOS_SKILLGROUPNUMBER);
m_pDialog->AddLogMessage((char *) grNum.c_str());
m_pDialog->AddLogMessage((char *) id.c_str()).
}
The above works. But but what if I want to access AgentsLoggedOn for a particular skillGroupNumber? How would I do that?
Thanks.