#ifndef ROOT_TASImagePlugin
#define ROOT_TASImagePlugin
#ifndef ROOT_TImagePlugin
#include "TImagePlugin.h"
#endif
struct ASImage;
class TASImagePlugin : public TImagePlugin {
public:
TASImagePlugin(const char *ext) : TImagePlugin(ext) { }
virtual ~TASImagePlugin() { }
virtual unsigned char *ReadFile(const char * , UInt_t & , UInt_t & ) { return 0; }
virtual Bool_t WriteFile(const char * , unsigned char * , UInt_t , UInt_t ) { return kFALSE; }
virtual ASImage *File2ASImage(const char * ) { return 0; }
virtual Bool_t ASImage2File(ASImage * ) { return kFALSE; }
ClassDef(TASImagePlugin, 0)
};
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
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.