home *** CD-ROM | disk | FTP | other *** search
/ Compressed Image File Formats / CompressedImageFileFormatsJohnMiano.iso / pc / Examples / c14 / inc / png.h next >
Encoding:
C/C++ Source or Header  |  1998-12-17  |  710 b   |  31 lines

  1. #ifndef __PNG_H
  2. #define __PNG_H
  3. //
  4. // Copyright (c) 1997,1998 Colosseum Builders, Inc.
  5. // All rights reserved.
  6. //
  7. // Colosseum Builders, Inc. makes no warranty, expressed or implied
  8. // with regards to this software. It is provided as is.
  9. //
  10. // See the README.TXT file that came with this software for restrictions
  11. // on the use and redistribution of this file or send E-mail to
  12. // info@colosseumbuilders.com
  13. //
  14.  
  15. //
  16. //  Title:  PNG common definitions
  17. //
  18. //  Author:  John M. Miano  miano@colosseumbuilders.com
  19. //
  20.  
  21. #include "bitimage.h"
  22. #include "grexcept.h"
  23.  
  24. class EPngError : public EGraphicsException
  25. {
  26. public:
  27.   EPngError (char *msg) : EGraphicsException (msg) {} ;
  28. } ;
  29.  
  30. #endif
  31.