16 template<
class Filtered>
25 virtual bool accept(
const Filtered *filtered)
const=0;
27 virtual void unset(){;}
29 bool filter(
const Filtered * filtered);
30 int getAnalyzedCount();
31 int getAcceptedCount();
41 template<
class Filtered>
47 template<
class Filtered>
51 template<
class Filtered>
55 bool acc = accept(filtered);
56 if (acc) _acceptedCount++;
60 template<
class Filtered>
67 template<
class Filtered>
70 return _analyzedCount;
73 template<
class Filtered>
76 return _acceptedCount;