Esempio n. 1
0
PLUMA_CONNECTOR


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


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