xref: /MusicPlayer2/MusicPlayer2/CoverDownloadCommon.h (revision 877f5f92b251a01591a4960c885129aa589a8135)
1 #pragma once
2 #include "InternetCommon.h"
3 
4 class CCoverDownloadCommon
5 {
6 public:
7 	CCoverDownloadCommon();
8 	~CCoverDownloadCommon();
9 
10 	static wstring GetAlbumCoverURL(const wstring& song_id);	//根据一首歌曲的ID,获取专辑封面的链接
11 };
12 
13