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