class ITEM
{
public:
void CountIO( int &noIn, int &noOut ) const;
};
void ITEM::CountIO( int &noIn, int &noOut ) const
noIn = 0;
noOut = 0;
}