{
int count = 0;
for (int i = 0; i < guides.length; i++)
{
OPMLGuide guide = guides[i];
count += guide.getFeeds().size();
OPMLReadingList[] lists = guide.getReadingLists();
for (int j = 0; j < lists.length; j++)
{
OPMLReadingList list = lists[j];
count += list.getFeeds().size();
}