Wavelet and Image class library  1.3.2
PixmapWriter.hh
Go to the documentation of this file.
00001 /*
00002  * class PixmapWriter
00003  *
00004  * $Date$
00005  * $Revision$
00006  *
00007  */
00008 
00009 #ifndef PIXMAP_WRITER_HH__
00010 #define PIXMAP_WRITER_HH__
00011 
00012 #include "WImage/PixmapFile.hh"
00013 
00022 /*abstract*/
00023 class 
00024 PixmapWriter: public PixmapFile
00025 {
00026 public:
00027   
00036   PixmapWriter (char const *name, Image *images[], int channels)
00037     : PixmapFile (name, images, channels) {}
00038 
00040   virtual ~PixmapWriter (void) {}
00041 
00047   void write (void);
00048 
00049 protected: 
00055   virtual int writefmt (void) = 0;
00056   
00057 }; /* class PixmapWriter */
00058 
00061 #endif /* PIXMAP_WRITER_HH__ */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines