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