videodownloader/application/utils.h

14 lines
382 B
C
Raw Normal View History

2015-04-22 19:32:04 +02:00
#ifndef STATIC_H
#define STATIC_H
#include <QJsonObject>
namespace Application {
int substring(const QString &source, QString &target, int startIndex, const QString &startStr, const QString &endStr);
void replaceHtmlEntities(QString &text);
QJsonObject loadJsonObjectFromResource(const QString &resource, QString *error = nullptr);
2019-07-20 20:20:58 +02:00
} // namespace Application
2015-04-22 19:32:04 +02:00
#endif // STATIC_H