16 lines
280 B
C++
16 lines
280 B
C++
#ifndef TOOLS_H
|
|
#define TOOLS_H
|
|
|
|
#include <math.h>
|
|
#include <QString>
|
|
|
|
class Tools
|
|
{
|
|
public:
|
|
static QString double_to_string_time(double value);
|
|
static QString double_to_string_counter(double value);
|
|
static QString int_to_string_time(int value);
|
|
};
|
|
|
|
#endif // TOOLS_H
|