16 lines
232 B
C
Raw Normal View History

2018-06-10 14:44:36 +03:00
#ifndef UTILS_H
#define UTILS_H
#include <QString>
class Utils
{
private:
Utils() = delete;
public:
static QString getVersion();
2018-06-18 02:43:52 +03:00
static QString getDescription();
static QString getPublicher();
2018-06-10 14:44:36 +03:00
};
#endif // UTILS_H