Ejemplo n.º 1
0
template <typename Pixel> bool  equal(const Pixel& p, mpl::true_) const { check_compatible<Pixel>(); return static_equal(*this,p); } 
Ejemplo n.º 2
0
    bool  equal (const Frame& p, boost::mpl::true_) const
    {
	check_compatible<Frame>();
	return static_equal(*this,p);
    }
Ejemplo n.º 3
0
template <typename P> bool                    operator==(const P& p)    const { check_compatible<P>(); return static_equal(*this,p); }