예제 #1
0
void YandexMusicPlugin::getTunes(QompPluginAction *act)
{
	YandexMusicController* ctrl = new YandexMusicController(this);
	connect(ctrl, &YandexMusicController::tunesReady, act, &QompPluginAction::setTunesReady);
	ctrl->getTunes();
}
예제 #2
0
QList<Tune*> YandexMusicPlugin::getTunes()
{
	YandexMusicController ctrl;
	return ctrl.getTunes();
}