home *** CD-ROM | disk | FTP | other *** search
/ Compressed Image File Formats / CompressedImageFileFormatsJohnMiano.iso / pc / Library / BCBViewer / EditableBitmap.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-17  |  1.2 KB  |  41 lines

  1. #ifndef __EDITABLEBITMAP_H
  2. #define __EDITABLEBITMAP_H
  3. //
  4. // Copyright (c) 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. // Permission to use, redistribute, and copy this file is granted
  11. // without a fee so long as as the following conditions are adhered to:
  12. //
  13. // o The user assumes all risk for using this software. The authors of this
  14. //   software shall be liable for no damages of any kind.
  15. //
  16. // o If the source code is distributed then this copyright notice must
  17. //   remain unaltered and any modification must be noted.
  18. //
  19. // o If this code is shipped in binary format the accompanying documentation
  20. //   should state that "this software is based, in part, on the work of
  21. //   Colosseum Builders, Inc."
  22. //
  23.  
  24. //
  25. //  Title:  Sample Image Viewer/Format Conversion Application
  26. //
  27. //  Author:  John M. Miano miano@colosseumbuilders.com
  28. //
  29.  
  30. #include "bitimage.h"
  31.  
  32. class EditableBitmapImage : public BitmapImage
  33. {
  34. public:
  35.   void GammaCorrect (double gamma) ;
  36.   void ToGrayscale () ;
  37.   EditableBitmapImage &operator=(const BitmapImage &) ;
  38. } ;
  39.  
  40. #endif
  41.