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.
Street.h
Go to the documentation of this file.
1 
6 #ifndef _STREET_H
7 #define _STREET_H
8 
9 #include "citoyen.h"
10 
11 
12 class Street {
13 public:
14  Vector<citoyen> citoyens;
15 
16  void afficher();
17 
18  void Generer();
19 protected:
20  long id_Street;
21 private:
22  Lamp lampes;
23  Trash trashes;
24  Sewer sewers;
25  Billboard billboards;
26  Camera cameras;
27  Service services;
28 };
29 
30 #endif //_STREET_H
Definition: Street.h:12
Definition: Trash.h:9
Vector< citoyen > citoyens
Definition: Street.h:14
Definition: Camera.h:9
Definition: Lamp.h:9
void Generer()
Definition: Street.cpp:20
long id_Street
Definition: Street.h:20
Definition: Sewer.h:9
Definition: Service.h:9
void afficher()
Definition: Street.cpp:16