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.
Alerte.h
Go to the documentation of this file.
1 
6 #ifndef _ALERTE_H
7 #define _ALERTE_H
8 
9 class Alerte {
10 public:
11 
12  void afficher();
13 protected:
14  long id_Alerte;
15 private:
16  string type;
17  int nbr_immeuble;
18  Date date;
19 };
20 
21 #endif //_ALERTE_H
Definition: Alerte.h:9
long id_Alerte
Definition: Alerte.h:14
void afficher()
Definition: Alerte.cpp:16