]> granicus.if.org Git - imagemagick/commitdiff
Removed compare methods.
authordirk <dirk@git.imagemagick.org>
Sat, 26 Dec 2015 14:30:42 +0000 (15:30 +0100)
committerdirk <dirk@git.imagemagick.org>
Sat, 26 Dec 2015 14:30:42 +0000 (15:30 +0100)
Magick++/lib/Drawable.cpp
Magick++/lib/Magick++/Drawable.h

index 7d089fab7b5c623f46358d006641cc1ac3d979f9..2bfa3a79183bd77233924ff6bb632290be33f245 100644 (file)
@@ -120,37 +120,6 @@ void Magick::Drawable::operator()(MagickCore::DrawingWand * context_) const
     dp->operator()(context_);
 }
 
-MagickPPExport int Magick::operator == ( const Magick::Drawable& /*left_*/,
-                                        const Magick::Drawable& /*right_*/ )
-{
-  return ( 1 );
-}
-MagickPPExport int Magick::operator != ( const Magick::Drawable& /*left_*/,
-                                        const Magick::Drawable& /*right_*/ )
-{
-  return ( 0 );
-}
-MagickPPExport int Magick::operator > ( const Magick::Drawable& /*left_*/,
-                                       const Magick::Drawable& /*right_*/ )
-{
-  return ( 0 );
-}
-MagickPPExport int Magick::operator <  ( const Magick::Drawable& /*left_*/,
-                                        const Magick::Drawable& /*right_*/ )
-{
-  return  ( 0 );
-}
-MagickPPExport int Magick::operator >= ( const Magick::Drawable& left_,
-                                        const Magick::Drawable& right_ )
-{
-  return ( ( left_ > right_ ) || ( left_ == right_ ) );
-}
-MagickPPExport int Magick::operator <= ( const Magick::Drawable& left_,
-                                        const Magick::Drawable& right_ )
-{
-  return ( ( left_ < right_ ) || ( left_ == right_ ) );
-}
-
 /*virtual*/
 Magick::VPathBase::~VPathBase ( void )
 {
index 71e78c1ba1ee43dcfb0ca72e2f821957010cbbfb..d796e3c3c1490e4c7b98ed93a10b0d563adead96 100644 (file)
@@ -142,20 +142,6 @@ namespace Magick
     DrawableBase* dp;
   };
 
-  // Compare two Drawable objects regardless of LHS/RHS
-  extern MagickPPExport int operator == ( const Drawable& left_,
-                                        const Drawable& right_ );
-  extern MagickPPExport int operator != ( const Drawable& left_,
-                                        const Drawable& right_ );
-  extern MagickPPExport int operator >  ( const Drawable& left_,
-                                        const Drawable& right_ );
-  extern MagickPPExport int operator <  ( const Drawable& left_,
-                                        const Drawable& right_ );
-  extern MagickPPExport int operator >= ( const Drawable& left_,
-                                        const Drawable& right_ );
-  extern MagickPPExport int operator <= ( const Drawable& left_,
-                                        const Drawable& right_ );
-
   typedef std::vector<Magick::Drawable> DrawableList;
 
 #if defined(MagickDLLExplicitTemplate)
@@ -163,9 +149,6 @@ namespace Magick
   MagickDrawableExtern template class MagickPPExport
   std::allocator<Magick::Drawable>;
 
-//   MagickDrawableExtern template class MagickPPExport
-//   std::vector<Magick::Drawable, std::allocator<Magick::Drawable> >;
-
 #endif // MagickDLLExplicitTemplate
 
 //