#ifndef DOWNLOAD_H_ #define DOWNLOAD_H_ #include #include namespace Syncers { class Download { public: Download(); Download(std::string); void downloadSong(int); private: std::string downloadFilePath; }; } #endif