BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
About.h
1 #pragma once
2 
3 #include <string>
4 
5 namespace BeeeOn {
6 
7 struct About {
8  unsigned int requirePocoVersion = 0;
9  unsigned int recommendPocoVersion = 0;
10  std::string version;
11  std::string description;
12 };
13 
14 }
Definition: About.h:7