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.
City.h
Go to the documentation of this file.
1 
6 #ifndef _CITY_H
7 #define _CITY_H
8 
9 class City {
10 public:
11 
12  void CalculPourcentage();
13 private:
14  Street streets;
15  int nbrPopulation;
16  int nbrHomme;
17  int nbrFemme;
18  float pDemoGrowth;
19  int nbrNewBorn;
20  int nbrDead;
21  float pNewBorn;
22  float pDead;
23  float pHomme;
24  float pFemme;
25 };
26 
27 #endif //_CITY_H
Definition: Street.h:12
void CalculPourcentage()
Definition: City.cpp:16
Definition: City.h:9