LV2 Toolkit  1.2.0
Classes
Plugin Mixins
Collaboration diagram for Plugin Mixins:

Classes

struct  EventRef< Required >
 
struct  Log< Required >
 
struct  ResizePort< Required >
 
struct  State< Required >
 
struct  URID< Required >
 
struct  URIMap< Required >
 
struct  Options< Required >
 
struct  Worker< Required >
 

Detailed Description

These template classes implement extra functionality that you may want to have in your plugin class, usually features. You add them to your class by passing them as template parameters to plugin when inheriting it. The internal structs of the mixin template classes, named I, will then be inherited by your plugin class, so that any public and protected members they have will be available to your plugin as if they were declared in your plugin class.

They are done as separate template classes so they won't add to the code size of your plugin if you don't need them.

There are also UI Mixins that you can use in the same way with GUI.