Example

//-------------------------------------------------------------------
// ECLConnMgr::GetConnList
//
// Use connection manager's connection list object to display
// number of connections (see also ECLConnList::GetCount).
//-------------------------------------------------------------------
void Sample28() {
 
ECLConnMgr			CM; // Connection manager object
 
printf("There are %lu connections in the connection list.\n",
       CM.GetConnList()->GetCount());
 
} // end sample