cppcheck/testfunc3/testfunc3.cpp

29 lines
202 B
C++
Raw Normal View History

2007-05-07 19:31:35 +02:00
class ITEM
{
public:
void CountIO( int &noIn, int &noOut ) const;
};
void ITEM::CountIO( int &noIn, int &noOut ) const
{
noIn = 0;
noOut = 0;
}