semilimes mcu sdk 0.1
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
fc_label.h
1#ifndef _fc_label_
2#define _fc_label_
3
4#include "../defines.h"
5
6class FcLabel
7{
8private:
9 SmeJson json_data;
10 char** pjson;
11
12public:
13// Function: FcLabel
14
15// A simple read-only label
16
17// Prototype:
18// void FcLabel(char* json);
19
20// Parameters:
22
23// Returns:
25 FcLabel(char* json)
26 {
27 pjson = &json;
28 json_data.initJson(*pjson);
29 }
30
31// Function: FcLabel.setObj
32
33// A simple read-only label
34
35// Prototype:
36// void FcLabel::setObj(char* refname,char* title);
37
38// Parameters:
41
42// Returns:
44 void setObj(char* refname,char* title);
45};
46
47#endif
Definition fc_label.h:7
void setObj(char *refname, char *title)
Definition fc_label.cpp:17
FcLabel(char *json)
Definition fc_label.h:25