This abstract interface gives access to the DiCE API to plugins. More...
#include <iplugin_api.h>
Public Member Functions | |
virtual Uint32 | get_interface_version () const =0 |
Returns the interface version of the DiCE library. More... | |
virtual const char * | get_version () const =0 |
Returns the product version of the DiCE library. More... | |
virtual base::IInterface * | get_api_component (const base::Uuid &uuid) const =0 |
Returns an API component from the DiCE API. More... | |
template<class T> | |
T * | get_api_component () const |
Returns an API component from the DiCE API. More... | |
virtual Sint32 | register_api_component (const base::Uuid &uuid, base::IInterface *api_component)=0 |
Registers an API component with the DiCE API. More... | |
template<class T> | |
Sint32 | register_api_component (T *api_component) |
Registers an API component with the DiCE API. More... | |
virtual Sint32 | unregister_api_component (const base::Uuid &uuid)=0 |
Unregisters an API component with the DiCE API. More... | |
template<class T> | |
Sint32 | unregister_api_component () |
Unregisters an API component with the DiCE API. More... | |
Public Member Functions inherited from mi::base::IInterface | |
virtual Uint32 | retain () const =0 |
Increments the reference count. More... | |
virtual Uint32 | release () const =0 |
Decrements the reference count. More... | |
virtual const IInterface * | get_interface (const Uuid &interface_id) const =0 |
Acquires a const interface from another. More... | |
template<class T> | |
const T * | get_interface () const |
Acquires a const interface from another. More... | |
virtual IInterface * | get_interface (const Uuid &interface_id)=0 |
Acquires a mutable interface from another. More... | |
template<class T> | |
T * | get_interface () |
Acquires a mutable interface from another. More... | |
virtual Uuid | get_iid () const =0 |
Returns the interface ID of the most derived interface. More... | |
Additional Inherited Members | |
Public Types inherited from mi::base::Interface_declare< 0xf237d52c, ... > | |
typedef Interface_declare< id1, ... > | Self |
Own type. More... | |
typedef Uuid_t< id1, ... > | IID |
Declares the interface ID (IID) of this interface. More... | |
Public Types inherited from mi::base::IInterface | |
typedef Uuid_t<0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0> | IID |
Declares the interface ID (IID) of this interface. More... | |
Static Public Member Functions inherited from mi::base::Interface_declare< 0xf237d52c, ... > | |
static bool | compare_iid (const Uuid &iid) |
Compares the interface ID iid against the interface ID of this interface and of its ancestors. More... | |
Static Public Member Functions inherited from mi::base::IInterface | |
static bool | compare_iid (const Uuid &iid) |
Compares the interface ID iid against the interface ID of this interface. More... | |
This abstract interface gives access to the DiCE API to plugins.
It offers functionality similar to INeuray, but does not allow to start or shutdown the library. On the other hand it allows the registration of user-defined classes.
|
inline |
Returns an API component from the DiCE API.
This template variant requires that the API component is registered under the interface ID of the corresponding interface (which is the case for built-in API components).
T | The type of the API components to be queried. |
NULL
if the API component is not supported or currently not available.
|
pure virtual |
Returns an API component from the DiCE API.
uuid | The UUID under which the API components was registered. For built-in API components this is the interface ID of the corresponding interface. |
NULL
if the API component is not supported or currently not available.
|
pure virtual |
Returns the interface version of the DiCE library.
This number changes whenever the abstract interfaces of the DiCE API change.
|
pure virtual |
Returns the product version of the DiCE library.
This string contains the product version, build number, build date, etc. of the current library.
|
pure virtual |
Registers an API component with the DiCE API.
API components are a way for plugins to provide access to their functionality. The registration makes the API component available for subsequent calls of get_api_component().
uuid | The ID of the API component to register, e.g., the interface ID of the corresponding interface. |
api_component | The API component to register. |
NULL
pointer).uuid
.
|
inline |
Registers an API component with the DiCE API.
API components are a way for plugins to provide access to their functionality. The registration makes the API component available for subsequent calls of get_api_component().
This template variant registers the API component under the interface ID of the corresponding interface.
api_component | The API component to register. |
NULL
pointer).ID
T::IID().
|
inline |
Unregisters an API component with the DiCE API.
The API component will no longer be accessible via get_api_component().
This template variant requires that the API component was registered under the interface ID of the corresponding interface (which is the case for the template variant of register_api_component()).
T::IID()
.
|
pure virtual |
Unregisters an API component with the DiCE API.
The API component will no longer be accessible via get_api_component().
uuid | The ID of the API component to unregister. |
uuid
.