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