struct CCL::IPluginInstance

Overview

Plug-in instance interface to store factory data. More…

#include <iclassfactory.h>

struct IPluginInstance: public CCL::IUnknown
{
    // typedefs

    typedef IUnknown* Token;

    // methods

    virtual void CCL_API setFactoryToken (Token token) = 0;
    virtual Token CCL_API getFactoryToken () const = 0;
};

Inherited Members

public:
    // methods

    virtual tresult CCL_API queryInterface (UIDRef iid, void** ptr) = 0;
    virtual unsigned int CCL_API retain () = 0;
    virtual unsigned int CCL_API release () = 0;

Detailed Documentation

Plug-in instance interface to store factory data.

<>

Typedefs

typedef IUnknown* Token

Instance data.

Methods

virtual void CCL_API setFactoryToken (Token token) = 0

The host factory associates data with this instance.

virtual Token CCL_API getFactoryToken () const = 0

Returns associated instance data.