semilimes mcu sdk 0.1
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
fc_hidden_value.h
1#ifndef _fc_hidden_value_
2#define _fc_hidden_value_
3
4#include "../defines.h"
5
7{
8private:
9 SmeJson json_data;
10 char** pjson;
11
12public:
13// Function: FcHiddenValue
14
15// A value into the form which is not visible to the use
16
17// Prototype:
18// void FcHiddenValue(char* json);
19
20// Parameters:
22
23// Returns:
25 FcHiddenValue(char* json)
26 {
27 pjson = &json;
28 json_data.initJson(*pjson);
29 }
30
31// Function: FcHiddenValue.setObj
32
33// A value into the form which is not visible to the use
34
35// Prototype:
36// void FcHiddenValue::setObj(char* refname,char* value);
37
38// Parameters:
41
42// Returns:
44 void setObj(char* refname,char* value);
45};
46
47#endif
Definition fc_hidden_value.h:7
FcHiddenValue(char *json)
Definition fc_hidden_value.h:25
void setObj(char *refname, char *value)
Definition fc_hidden_value.cpp:17