semilimes mcu sdk 0.1
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
get_account_profile.h
1#ifndef _fc_get_account_profile_
2#define _fc_get_account_profile_
3
4#include "../defines.h"
5
7{
8private:
9 SmeJson json_data;
10 char** pjson;
11
12public:
13// Function: GetAccountProfile
14
15// Gets the account profile's configuration and content.
16
17// Prototype:
18// void GetAccountProfile(char* json);
19
20// Parameters:
22
23// Returns:
26 {
27 pjson = &json;
28 json_data.initJson(*pjson);
29 }
30
31// Function: GetMyAccount.setObj
32
33// Gets the account profile's configuration and content.
34
35// Prototype:
36// void GetAccountProfile::setObj(char* accountId);
37
38// Parameters:
40
41// Returns:
43
44
45 void setObj(char* accountId);
46};
47
48#endif
Definition get_account_profile.h:7
GetAccountProfile(char *json)
Definition get_account_profile.h:25
void setObj(char *accountId)
Definition get_account_profile.cpp:16