Able to retrieve an access token. Next implement fetching all songs. I left a TODO.

This commit was merged in pull request #56.
This commit is contained in:
kdeng00
2019-10-03 20:35:59 -04:00
parent 3c8064dfd2
commit 77ecf4ca12
10 changed files with 257 additions and 152 deletions
+4 -1
View File
@@ -5,11 +5,14 @@
#ifndef MEAR_USER_H
#define MEAR_USER_H
//#include "../../../../../../../../Android/Sdk/ndk/20.0.5594570/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/string"
namespace model {
struct User
{
User() = default;
User(const std::string& user, const std::string& pass) :
username(user), password(pass) { }
std::string username;
std::string password;
};