blob: 2b8e80245c57dd2abe00eb9fa7805662e15b11d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef NAMEREPLACE_H
#define NAMEREPLACE_H
#include <QString>
class NameReplace
{
public:
static void loadSubs();
static void replace(QString& input);
};
#endif
|