Smart Urban Manager
SUM (Smart Urban Manager) is a smart street project that aims to develop a huge data hub and communications center for all kind of street maintenance that will facilitate new innovation across the industry leading to cost reductions and new revenue opportunities.
Lamp.h
Go to the documentation of this file.
1 
6 #ifndef _LAMP_H
7 #define _LAMP_H
8 
9 class Lamp {
10 protected:
11  long id_Lamp;
12 private:
13  time timeOff;
14  time timeOn;
15  int luminosity;
16  date & time last_Change;
17  time working_Time;
18  bool state;
19 };
20 
21 #endif //_LAMP_H
Definition: Lamp.h:9
long id_Lamp
Definition: Lamp.h:11