16 lines
211 B
C++
16 lines
211 B
C++
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include "precompiled.h"
|
|
|
|
class Utils
|
|
{
|
|
public:
|
|
static const QString txidStatusMessage;
|
|
|
|
static const QString getTokenName();
|
|
private:
|
|
Utils() = delete;
|
|
};
|
|
|
|
#endif // UTILS_H
|