29 lines
202 B
C++
29 lines
202 B
C++
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ITEM
|
|
{
|
|
public:
|
|
void CountIO( int &noIn, int &noOut ) const;
|
|
};
|
|
|
|
|
|
void ITEM::CountIO( int &noIn, int &noOut ) const
|
|
{
|
|
noIn = 0;
|
|
noOut = 0;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|