#include <istdplug.h>
This class represents the interface for the Bitmap IO BMP format.
The interfaceID is defined as BMPIO_INTERFACE. Through C++ you can access the interface the following way:
ClassEntry* ce = ip->GetDllDirectory()->ClassDir().FindClassEntry(BMM_IO_CLASS_ID, Class_ID(BMPCLASSID,0)); if (ce) { ClassDesc* cd = ce->FullCD(); if (cd) { IBitmapIO_Bmp* ib = (IBitmapIO_Bmp*)cd->GetInterface(BMPIO_INTERFACE); if (ib) { int i = ib->GetType(); ib->SetType(i); } } }
Public Member Functions |
|
virtual int | GetType ()=0 |
virtual void | SetType (int type)=0 |
virtual int GetType | ( | ) | [pure virtual] |
virtual void SetType | ( | int | type | ) | [pure virtual] |