semilimes mcu sdk 0.1
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
fc_location_picker.h
1#ifndef _fc_location_picker_
2#define _fc_location_picker_
3
4#include "../defines.h"
5
7{
8private:
9 SmeJson json_data;
10 char** pjson;
11
12public:
13// Function: FcLocationPicker
14
15// A picker showing a map where to choose a location or address
16
17// Prototype:
18// void FcLocationPicker(char* json);
19
20// Parameters:
22
23// Returns:
25 FcLocationPicker(char* json)
26 {
27 pjson = &json;
28 json_data.initJson(*pjson);
29 }
30
31// Function: FcLocationPicker.setObj
32
33// A picker showing a map where to choose a location or address
34
35// Prototype:
36// void FcLocationPicker::setObj(char* refname,char* title,bool reqSel, char* value,char* actBtnTitle,bool currLocOnly);
37
38// Parameters:
45
46// Returns:
48 void setObj(char* refname,char* title,bool reqSel, char* value,char* actBtnTitle,bool currLocOnly);
49};
50
51#endif
Definition fc_location_picker.h:7
FcLocationPicker(char *json)
Definition fc_location_picker.h:25
void setObj(char *refname, char *title, bool reqSel, char *value, char *actBtnTitle, bool currLocOnly)
Definition fc_location_picker.cpp:21