#ifndef PIXEL_RATING_H #define PIXEL_RATING_H #include namespace icl{ /// Function object interface that produces a reference-color-based pixel rating \ingroup G_CBS template class PixelRating{ public: /// virtual destructor virtual ~PixelRating(){} virtual RatingType rate(PixelType t0, PixelType t1, PixelType t2)=0; }; } #endif