Completing Lifx driver that uses Particle cloud; Particle phone app provides a nice...
[iotcloud.git] / version2 / src / RPi / DeviceStateHostInfo.h
1 #ifndef _DEVICESTATEHOSTINFO_H__
2 #define _DEVICESTATEHOSTINFO_H__
3 #include <iostream>
4
5 class DeviceStateHostInfo {
6         private:
7                 int64_t signal;
8                 int64_t tx;
9                 int64_t rx;
10
11         public:
12
13                 DeviceStateHostInfo(int64_t _signal, int64_t _tx, int64_t _rx) {
14
15                         signal = _signal;
16                         tx = _tx;
17                         rx = _rx;
18                 }
19
20
21                 ~DeviceStateHostInfo() {
22                 }
23
24
25                 int64_t getSignal() {
26                         return signal;
27                 }
28
29
30                 int64_t getTx() {
31                         return tx;
32                 }
33
34
35                 int64_t getRx() {
36                         return rx;
37                 }
38 };
39 #endif