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