Example #1
0
PLUMA_CONNECTOR


  bool connect(pluma::Host& host){
     // add a  provider to host
          host.add( new sourcenavigatorProvider() );
     return true;
 }
Example #2
0
PLUMA_CONNECTOR


bool connect(pluma::Host& host){
    // add a  provider to host
    host.add( new stockProvider() );
    return true;
}
Example #3
0
PLUMA_CONNECTOR
bool pluginConnect(pluma::Host& host) {
    host.add( new FFMPEGInvokerProvider() );
    return true;
}
Example #4
0
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;
}
Example #6
0
PLUMA_CONNECTOR
bool pluginConnect(pluma::Host& host) {
	host.add( new CometIOProcessorProvider() );
	return true;
}
Example #7
0
PLUMA_CONNECTOR
bool connect(pluma::Host& host) {
	host.add( new SpatialAudioProvider() );
	return true;
}
Example #8
0
PLUMA_CONNECTOR
bool connect(pluma::Host& host) {
	host.add( new USCXMLInvokerProvider() );
	return true;
}
Example #9
0
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;
}