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.
Truck.h
Go to the documentation of this file.
1 
6 #ifndef _TRUCK_H
7 #define _TRUCK_H
8 
9 class Truck {
10 protected:
11  string matricule;
12 private:
13  string nom;
14  string prenom;
15  string permis;
16  string marque;
17 };
18 
19 #endif //_TRUCK_H
Definition: Truck.h:9
string matricule
Definition: Truck.h:11