コード例 #1
0
ファイル: yandexmusicplugin.cpp プロジェクト: qomp/qomp
void YandexMusicPlugin::getTunes(QompPluginAction *act)
{
	YandexMusicController* ctrl = new YandexMusicController(this);
	connect(ctrl, &YandexMusicController::tunesReady, act, &QompPluginAction::setTunesReady);
	ctrl->getTunes();
}
コード例 #2
0
ファイル: yandexmusicplugin.cpp プロジェクト: SunRain/qomp
QList<Tune*> YandexMusicPlugin::getTunes()
{
	YandexMusicController ctrl;
	return ctrl.getTunes();
}