VInterpolate8.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // VIPS interpolate wrapper
  2. /*
  3. This file is part of VIPS.
  4. VIPS is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  15. 02110-1301 USA
  16. */
  17. /*
  18. These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
  19. */
  20. #ifndef VIPS_VINTERPOLATE_H
  21. #define VIPS_VINTERPOLATE_H
  22. #include <vips/vips.h>
  23. VIPS_NAMESPACE_START
  24. class VInterpolate : VObject
  25. {
  26. public:
  27. VInterpolate( VipsInterpolate *interpolate, VSteal steal = STEAL ) :
  28. VObject( (VipsObject *) interpolate, steal )
  29. {
  30. }
  31. static
  32. VInterpolate new_from_name( const char *name, VOption *options = 0 );
  33. VipsInterpolate *
  34. get_interpolate() const
  35. {
  36. return( (VipsInterpolate *) VObject::get_object() );
  37. }
  38. };
  39. VIPS_NAMESPACE_END
  40. #endif /*VIPS_VINTERPOLATE_H*/