mirror of
https://github.com/QuasarApp/QtDeployer.git
synced 2025-04-27 22:14:32 +00:00
16 lines
232 B
C++
16 lines
232 B
C++
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
#include <QString>
|
|
|
|
class Utils
|
|
{
|
|
private:
|
|
Utils() = delete;
|
|
public:
|
|
static QString getVersion();
|
|
static QString getDescription();
|
|
static QString getPublicher();
|
|
};
|
|
|
|
#endif // UTILS_H
|