dp->operator()( context_ );
}
-MagickPPExport int Magick::operator == ( const Magick::VPath& /*left_*/,
- const Magick::VPath& /*right_*/ )
-{
- return ( 1 );
-}
-MagickPPExport int Magick::operator != ( const Magick::VPath& /*left_*/,
- const Magick::VPath& /*right_*/ )
-{
- return ( 0 );
-}
-MagickPPExport int Magick::operator > ( const Magick::VPath& /*left_*/,
- const Magick::VPath& /*right_*/ )
-{
- return ( 0 );
-}
-MagickPPExport int Magick::operator < ( const Magick::VPath& /*left_*/,
- const Magick::VPath& /*right_*/ )
-{
- return ( 0 );
-}
-MagickPPExport int Magick::operator >= ( const Magick::VPath& left_,
- const Magick::VPath& right_ )
-{
- return ( ( left_ > right_ ) || ( left_ == right_ ) );
-}
-MagickPPExport int Magick::operator <= ( const Magick::VPath& left_,
- const Magick::VPath& right_ )
-{
- return ( ( left_ < right_ ) || ( left_ == right_ ) );
-}
-
//
// Drawable Objects
//
VPathBase* dp;
};
-// Compare two VPath objects regardless of LHS/RHS
-extern MagickPPExport int operator == ( const VPath& left_,
- const VPath& right_ );
-extern MagickPPExport int operator != ( const VPath& left_,
- const VPath& right_ );
-extern MagickPPExport int operator > ( const VPath& left_,
- const VPath& right_ );
-extern MagickPPExport int operator < ( const VPath& left_,
- const VPath& right_ );
-extern MagickPPExport int operator >= ( const VPath& left_,
- const VPath& right_ );
-extern MagickPPExport int operator <= ( const VPath& left_,
- const VPath& right_ );
-
typedef std::vector<Magick::VPath> VPathList;
#if defined(MagickDLLExplicitTemplate)