1 #ifndef FOO_STATISTICS_H
2 #define FOO_STATISTICS_H
4 #include "CSD_PT_TestServant_Export.h"
7 class CSD_PT_TestServant_Export Foo_Statistics
11 virtual ~Foo_Statistics();
13 void init(unsigned num_clients
, unsigned num_loops
);
15 void expected(unsigned op_num
, unsigned count
);
16 void actual(unsigned op_num
, unsigned count
);
18 bool actual_vs_expected();
20 unsigned total() const;
24 unsigned num_clients_
;
26 unsigned expected_
[5];