home *** CD-ROM | disk | FTP | other *** search
/ Compressed Image File Formats / CompressedImageFileFormatsJohnMiano.iso / pc / Examples / c06 / inc / jpegdeco.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-20  |  279 b   |  18 lines

  1. #include <iostream>
  2. #include "datatype.h"
  3.  
  4. using namespace std ;
  5.  
  6. class JpegDecoder
  7. {
  8. public:
  9.   JpegDecoder (istream &) ;
  10.   UBYTE1 ReadByte () ;
  11.   int NextBit () ;
  12. private:
  13.   unsigned int bit_buffer ;
  14.   unsigned int bit_position ;
  15.   istream *input_stream ;
  16. } ;
  17.  
  18.