#ifndef HELPER_H #define HELPER_H #include #include class Helper { public: Helper(); static QString replaceByNumbers(const QString &str); private: static const QMap m_numMap; }; #endif // HELPER_H