PLUMA_CONNECTOR bool connect(pluma::Host& host){ // add a provider to host host.add( new sourcenavigatorProvider() ); return true; }
PLUMA_CONNECTOR bool connect(pluma::Host& host){ // add a provider to host host.add( new stockProvider() ); return true; }
PLUMA_CONNECTOR bool pluginConnect(pluma::Host& host) { host.add( new FFMPEGInvokerProvider() ); return true; }
PLUMA_CONNECTOR bool pluginConnect(pluma::Host& host) { host.add( new PostponeElementProvider() ); return true; }
PLUMA_CONNECTOR bool pluginConnect(pluma::Host& host) { host.add( new SpiderMonkeyDataModelProvider() ); return true; }
PLUMA_CONNECTOR bool pluginConnect(pluma::Host& host) { host.add( new CometIOProcessorProvider() ); return true; }
PLUMA_CONNECTOR bool connect(pluma::Host& host) { host.add( new SpatialAudioProvider() ); return true; }
PLUMA_CONNECTOR bool connect(pluma::Host& host) { host.add( new USCXMLInvokerProvider() ); return true; }
PLUMA_CONNECTOR bool connect(pluma::Host& host){ host.add( new CxxProf::NetworkCxxProfProvider() ); return true; }
///////////////////////////////////////////////////////// /// Plugin connects to hosts through this function /// Add Eagle and Jaguar providers to the host, so that it /// can create and use those kind of warriors ///////////////////////////////////////////////////////// PLUMA_CONNECTOR bool connect(pluma::Host& host){ host.add( new EagleProvider() ); host.add( new JaguarProvider() ); return true; }