#ifndef ROOT_TImagePlugin
#define ROOT_TImagePlugin
#ifndef ROOT_TObject
#include "TObject.h"
#endif
#ifndef ROOT_TString
#include "TString.h"
#endif
class TImagePlugin : public TObject {
protected:
TString fExtension;
public:
TImagePlugin(const char *ext) { fExtension = ext; }
virtual ~TImagePlugin() { }
virtual unsigned char *ReadFile(const char *filename, UInt_t &w, UInt_t &h) = 0;
virtual Bool_t WriteFile(const char *filename, unsigned char *argb, UInt_t w, UInt_t h) = 0;
ULong_t Hash() const { return fExtension.Hash(); }
ClassDef(TImagePlugin, 0)
};
#endif
Last update: Thu Jan 17 08:58:16 2008
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.