12 lines
167 B
C++
12 lines
167 B
C++
#ifndef FORMATTER_HPP
|
|
#define FORMATTER_HPP
|
|
|
|
#include <QRegExp>
|
|
#include <QString>
|
|
|
|
namespace formatter {
|
|
QString format(QString toFormat);
|
|
}
|
|
|
|
#endif // FORMATTER_HPP
|