This commit is contained in:
Alexis Delhaie
2020-08-02 22:17:09 +02:00
commit 68f44834de
31 changed files with 3088 additions and 0 deletions

13
sources/tools.h Normal file
View File

@@ -0,0 +1,13 @@
#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