diff options
Diffstat (limited to 'drivers/jpg/image_loader_jpg.h')
-rw-r--r-- | drivers/jpg/image_loader_jpg.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/drivers/jpg/image_loader_jpg.h b/drivers/jpg/image_loader_jpg.h new file mode 100644 index 0000000000..b1d5b8016f --- /dev/null +++ b/drivers/jpg/image_loader_jpg.h @@ -0,0 +1,32 @@ +/*************************************************/ +/* image_loader_jpg.h */ +/*************************************************/ +/* This file is part of: */ +/* GODOT ENGINE */ +/*************************************************/ +/* Source code within this file is: */ +/* (c) 2007-2010 Juan Linietsky, Ariel Manzur */ +/* All Rights Reserved. */ +/*************************************************/ + +#ifndef IMAGE_LOADER_JPG_H +#define IMAGE_LOADER_JPG_H + +#include "io/image_loader.h" + +/** + @author Juan Linietsky <reduzio@gmail.com> +*/ +class ImageLoaderJPG : public ImageFormatLoader { + + +public: + + virtual Error load_image(Image *p_image,FileAccess *f); + virtual void get_recognized_extensions(List<String> *p_extensions) const; + ImageLoaderJPG(); +}; + + + +#endif |