diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2020-01-13 22:40:20 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2020-01-13 22:41:13 +0100 |
| commit | 1e2b0af44316c21a65a984fdbeb1f2ed1313ad03 (patch) | |
| tree | 336b388dece4dc09b67d2e6e04d8fab97747e927 /FL/Fl_BMP_Image.H | |
| parent | c90baf94929e0fc45448d0f8e7d311b4d9c861db (diff) | |
Combine image readers in class Fl_Image_Reader
This new class is explicitly internal and undocumented. We can
rename and/or redefine or extend it as we need.
This work is based on Matt's recent update with separate internal
classes BMPReader and GIFReader which have been replaced by
Fl_Image_Reader.
Diffstat (limited to 'FL/Fl_BMP_Image.H')
| -rw-r--r-- | FL/Fl_BMP_Image.H | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/FL/Fl_BMP_Image.H b/FL/Fl_BMP_Image.H index aca8d1e2b..0d60d7114 100644 --- a/FL/Fl_BMP_Image.H +++ b/FL/Fl_BMP_Image.H @@ -3,17 +3,17 @@ // // BMP image header file for the Fast Light Tool Kit (FLTK). // -// Copyright 1998-2010 by Bill Spitzak and others. +// Copyright 1998-2020 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. If this // file is missing or damaged, see the license at: // -// http://www.fltk.org/COPYING.php +// https://www.fltk.org/COPYING.php // // Please report all bugs and problems on the following page: // -// http://www.fltk.org/str.php +// https://www.fltk.org/str.php // /* \file @@ -25,7 +25,7 @@ /** The Fl_BMP_Image class supports loading, caching, - and drawing of Windows Bitmap (BMP) image files. + and drawing of Windows Bitmap (BMP) image files. */ class FL_EXPORT Fl_BMP_Image : public Fl_RGB_Image { @@ -36,7 +36,7 @@ class FL_EXPORT Fl_BMP_Image : public Fl_RGB_Image { protected: - void load_bmp_(class BMPReader &rdr); + void load_bmp_(class Fl_Image_Reader &rdr); }; |
