00001 //--------------------------------------------------------------------------------------------- 00002 // This file is a part of "DinoKod". 00003 // Copyright © 2003 Dino Productions. All Rights Reserved. 00004 // 00005 // File : Jpeg.h 00006 // Author : Sebastien LEIX sebastien.leix@wanadoo.fr 00007 // Date : 07/09/2002 00008 // Modification : 00009 // 00010 //--------------------------------------------------------------------------------------------- 00011 #ifndef __JPEG_H__ 00012 #define __JPEG_H__ 00013 00014 #include "Bitmap/BitmapDll.h" 00015 #include "Bitmap/Bitmap.h" 00016 00017 //-------------------------------------------------------------------------------------------------------------------------- 00018 class BITMAP_API KJpeg : public KBitmap 00019 { 00020 protected: 00021 00022 public: 00023 KJpeg(); 00024 virtual ~KJpeg(); 00025 00026 s32 LoadJPEG( const char* pFileName ); 00027 }; 00028 00029 #endif __JPEG_H__
1.5.1-p1