image_loader_jpg.h 883 B

123456789101112131415161718192021222324252627282930313233
  1. /*************************************************/
  2. /* image_loader_jpg.h */
  3. /*************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /*************************************************/
  7. /* Source code within this file is: */
  8. /* (c) 2007-2010 Juan Linietsky, Ariel Manzur */
  9. /* All Rights Reserved. */
  10. /*************************************************/
  11. #ifndef IMAGE_LOADER_JPG_H
  12. #define IMAGE_LOADER_JPG_H
  13. #include "io/image_loader.h"
  14. /**
  15. @author Juan Linietsky <reduzio@gmail.com>
  16. */
  17. class ImageLoaderJPG : public ImageFormatLoader {
  18. public:
  19. virtual Error load_image(Image *p_image,FileAccess *f);
  20. virtual void get_recognized_extensions(List<String> *p_extensions) const;
  21. ImageLoaderJPG();
  22. };
  23. #endif