AMO-Tools-Suite  v.0.9.0
Set of tools for calculating energy efficiency in industrial equipment
All Classes Namespaces Files Functions Variables Enumerations Friends Macros Pages
Conversion.h
1 #ifndef AMO_LIBRARY_CONVERSION_H
2 #define AMO_LIBRARY_CONVERSION_H
3 
4 class Conversion
5 {
6  public:
7  Conversion(double x)
8  : x(x)
9  {}
10 
11  double fractionToPercent();
12  double percentToFraction();
13  double manualConversion(double factor);
14 
15  private:
16  double x;
17 };
18 
19 #endif //AMO_LIBRARY_CONVERSION_H