semilimes mcu sdk 1.1.5
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
websocket_header.h
1#ifndef _websocket_header_
2#define _websocket_header_
3
4#include "../defines.h"
5
7{
8private:
9 SmeJson json_data;
10 char* json = nullptr;
11
12public:
13// Function: ~WebsocketHeader
14
15// distructor of the class, frees up the memory occupied by the array/s
16
17// Prototype:
18// ~WebsocketHeader()
19
20// Parameters:
21
22// Returns:
25 {
26 delete[] json;
27 json = nullptr;
28 }
29
30// Function: WebsocketHeader.setObj
31
32// This endpoint create the websocket header json message on which the api call is to be embedded
33
34// Prototype:
35// void getRequest(const char* requestId, const char* requestType, const char* body);
36
37// Parameters:
41
42// Returns:
44 char* getRequest(const char* requestId, const char* requestType, const char* body);
45};
46
47#endif
Definition websocket_header.h:7
char * getRequest(const char *requestId, const char *requestType, const char *body)
Definition websocket_header.cpp:18
~WebsocketHeader()
Definition websocket_header.h:24