KShare/src/formatter.hpp

13 lines
261 B
C++
Raw Permalink Normal View History

2017-04-23 20:29:24 +02:00
#ifndef FORMATTER_HPP
#define FORMATTER_HPP
2017-09-13 01:47:41 +02:00
#include <QMap>
2017-04-23 20:29:24 +02:00
#include <QRegExp>
#include <QString>
2017-05-06 13:21:12 +02:00
namespace formatter {
2017-10-05 19:21:52 +02:00
QString format(QString toFormat, QString ext, QMap<QString, QString> variables = QMap<QString, QString>());
2017-04-23 20:29:24 +02:00
}
#endif // FORMATTER_HPP