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