summaryrefslogtreecommitdiff
path: root/include/Device/Device.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Device/Device.h')
-rw-r--r--include/Device/Device.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/Device/Device.h b/include/Device/Device.h
index 1c6f77e..b7cbeaf 100644
--- a/include/Device/Device.h
+++ b/include/Device/Device.h
@@ -7,7 +7,9 @@
class Device {
private:
- bool verbose = false;
+ bool hasRadio;
+ bool verbose ;
+ uint8_t radioTryCount;
bool isRoot;
rapidjson::Document capabilities;
rapidjson::Document deviceInfo;
@@ -60,6 +62,8 @@ class Device {
std::string toCamelCase(const char * d_name);
void Verbose(bool val);
bool Verbose();
+ void RadioTryCount(uint8_t val);
+ uint8_t RadioTryCount();
void writeJson();
};