1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-30 22:51:16 +01:00
GPXSee/src/common/util.h
2021-02-01 20:06:05 +01:00

14 lines
208 B
C++

#ifndef UTIL_H
#define UTIL_H
#include <QString>
namespace Util
{
int str2int(const char *str, int len);
double niceNum(double x, bool round);
QString file2name(const QString &path);
}
#endif // UTIL_H