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.
19 lines
249 B
C
19 lines
249 B
C
7 years ago
|
#ifndef HELPER_H
|
||
|
#define HELPER_H
|
||
|
|
||
|
#include <QString>
|
||
|
#include <QMap>
|
||
|
|
||
|
class Helper
|
||
|
{
|
||
|
public:
|
||
|
Helper();
|
||
|
|
||
|
static QString replaceByNumbers(const QString &str);
|
||
|
|
||
|
private:
|
||
|
static const QMap<QString, QString> m_numMap;
|
||
|
};
|
||
|
|
||
|
#endif // HELPER_H
|