mirror of
https://github.com/QuasarApp/QtDeployer.git
synced 2025-05-03 08:39:33 +00:00
15 lines
161 B
C
15 lines
161 B
C
|
#ifndef UTILS_H
|
||
|
#define UTILS_H
|
||
|
#include <QString>
|
||
|
|
||
|
class Utils
|
||
|
{
|
||
|
private:
|
||
|
Utils() = delete;
|
||
|
public:
|
||
|
static QString getVersion();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // UTILS_H
|