graphlcd-base/tools/convpic/tiff.h
changeset 4 df6a40031aa5
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/graphlcd-base/tools/convpic/tiff.h	Wed Feb 06 17:32:55 2008 +0000
     1.3 @@ -0,0 +1,42 @@
     1.4 +/**
     1.5 + *  GraphLCD plugin for the Video Disk Recorder
     1.6 + *
     1.7 + *  tiff.h  -  tiff logo class
     1.8 + *
     1.9 + *  (c) 2004 Andreas Brachold <vdr04 AT deltab de>
    1.10 + *  (c) 2001-2004 Carsten Siebholz <c.siebholz AT t-online de>
    1.11 + **/
    1.12 +
    1.13 +/***************************************************************************
    1.14 + *                                                                         *
    1.15 + *   This program is free software; you can redistribute it and/or modify  *
    1.16 + *   it under the terms of the GNU General Public License as published by  *
    1.17 + *   the Free Software Foundation; either version 2 of the License, or     *
    1.18 + *   (at your option) any later version.                                   *
    1.19 + *                                                                         *
    1.20 + *   This program is distributed in the hope that it will be useful,       *
    1.21 + *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
    1.22 + *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
    1.23 + *   GNU General Public License for more details.                          *
    1.24 + *                                                                         *
    1.25 + *   You should have received a copy of the GNU General Public License     *
    1.26 + *   along with this program;                                              *
    1.27 + *   if not, write to the Free Software Foundation, Inc.,                  *
    1.28 + *   59 Temple Place, Suite 330, Boston, MA  02111-1307  USA               *
    1.29 + *                                                                         *
    1.30 + ***************************************************************************/
    1.31 +
    1.32 +#ifndef _TIFF_H_
    1.33 +#define _TIFF_H_
    1.34 +
    1.35 +#include <glcdgraphics/imagefile.h>
    1.36 +
    1.37 +class cTIFFFile : public GLCD::cImageFile
    1.38 +{
    1.39 +public:
    1.40 +    cTIFFFile();
    1.41 +    virtual ~cTIFFFile();
    1.42 +    virtual bool Load(GLCD::cImage & image, const std::string & fileName);
    1.43 +};
    1.44 +
    1.45 +#endif