|
||
class CImageEncodeConstruct : public CBase;
Provides functions related to constructing encoders.
Objects of this class are loaded by ECOM, and it is this class which is responsible for instantiating the encoder plugins. Plugin writers must derive their own plugin specific variants. The derived class is responsible for defining its own factory function to create instances of itself.
CBase
-
Base class for all classes to be instantiated on the heap.
CImageEncodeConstruct
-
Provides functions related to constructing encoders.
Defined in CImageEncodeConstruct
:
CImageEncodeConstruct()
Default constructor ConstructL()
Second stage constructor. This should be called during construction of the deriv...ImplementationUid()const
Retrieve the encoder implementation UID.NewEncoderL()const
Default version creates a basic CImageEncoder.NewPluginL()const
Creates new concrete CImageEncoderPlugin object.RequestThread()const
Requests a threaded encode.~CImageEncodeConstruct()
Destructor Inherited from CBase
:
Delete(CBase *)
Deletes the specified object.Extension_(TUint,TAny *&,TAny *)
Extension function operator new(TUint)
Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TAny *)
Initialises the object to binary zeroes.operator new(TUint,TLeave)
Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TLeave,TUint)
Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TUint)
Allocates the object from the heap and then initialises its contents to binary z...protected: IMPORT_C void ConstructL();
Second stage constructor. This should be called during construction of the derived class.
IMPORT_C TUid ImplementationUid() const;
Retrieve the encoder implementation UID.
|
IMPORT_C virtual CImageEncoder* NewEncoderL() const;
Default version creates a basic CImageEncoder
.
|
virtual CImageEncoderPlugin* NewPluginL() const=0;
Creates new concrete CImageEncoderPlugin
object.
This is a virtual function that each derived class must implement.
|
IMPORT_C virtual TBool RequestThread() const;
Requests a threaded encode.
Note: The default version of this virtual function returns EFalse and does not request a threaded encode.
|