You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
315 B
C++
23 lines
315 B
C++
#ifndef HELPER_H
|
|
#define HELPER_H
|
|
|
|
#include <QString>
|
|
#include <QMap>
|
|
|
|
#include "core_global.h"
|
|
|
|
class CORESHARED_EXPORT Helper
|
|
{
|
|
public:
|
|
Helper();
|
|
|
|
static QString replaceByNumbers(const QString &str);
|
|
|
|
private:
|
|
#ifndef _WIN32
|
|
static const QMap<QString, QString> m_numMap;
|
|
#endif
|
|
};
|
|
|
|
#endif // HELPER_H
|