FactDev  0.1
double.h
1 #ifndef DOUBLE_H
2 #define DOUBLE_H
3 #include <math.h>
4 #include <cmath>
5 
6 namespace Utils {
7 
11 class Double
12 {
13 public:
20  static double round(double n, unsigned int d);
21 };
22 }
23 #endif // DOUBLE_H
static double round(double n, unsigned int d)
round Roud a double value to d decimals
Definition: double.cpp:3
The Double class Utils functions for Double calculs.
Definition: double.h:11