Files
Chronos/sources/tools.h
2022-10-17 20:03:12 +02:00

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