Added functionality to upload a song. Need to write parse classes to parse the base API HTTP endpoint, and the source path. #7

This commit is contained in:
amazing-username
2019-06-03 22:29:20 -04:00
parent 56bf7f1900
commit 8230f7b5ff
10 changed files with 215 additions and 12 deletions
+2 -1
View File
@@ -7,6 +7,7 @@
#include"Managers/FileManager.h"
#include"Models/Song.h"
#include"Models/Token.h"
#include"Models/UploadForm.h"
@@ -20,7 +21,7 @@ namespace Syncers
Upload(Models::UploadForm);
void uploadSong();
void uploadSong(const Models::Token, const std::string);
private:
Managers::FileManager fMgr;
Models::Song song;