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