WIP: main
This commit is contained in:
parent
f25f34565a
commit
15730b470e
52 changed files with 2438 additions and 208 deletions
18
client/utils.h
Normal file
18
client/utils.h
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#ifndef UTILS_H
|
||||
#define UTILS_H
|
||||
|
||||
#include <QString>
|
||||
|
||||
class Utils {
|
||||
|
||||
public:
|
||||
static QString executable(const QString& baseName, bool absPath);
|
||||
static QString systemConfigPath();
|
||||
static QString systemDataLocationPath();
|
||||
static QString systemLogPath();
|
||||
static QString toString(bool value);
|
||||
static bool createEmptyFile(const QString& path);
|
||||
static bool processIsRunning(const QString& fileName);
|
||||
};
|
||||
|
||||
#endif // UTILS_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue