Implemented functionality to download songs from the Icarus music server

This commit is contained in:
amazing-username
2019-03-21 22:40:16 -04:00
parent e8f2bbcb48
commit b53537b780
3 changed files with 46 additions and 0 deletions
+5
View File
@@ -2,6 +2,7 @@
#define DOWNLOAD_H_
#include<iostream>
#include<string>
namespace Syncers
{
@@ -9,7 +10,11 @@ namespace Syncers
{
public:
Download();
Download(std::string);
void downloadSong(int);
private:
std::string downloadFilePath;
};
}