This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/doric/utils/DoricUtils.h

31 lines
697 B
C
Raw Normal View History

2021-02-04 16:59:58 +08:00
#ifndef UTILS_H
#define UTILS_H
#include <QFile>
#include <QResource>
#include <QString>
#include <QTextStream>
class DoricUtils {
public:
static QString readAssetFile(QString preffix, QString assetName) {
QResource resource(":" + preffix + "/" + assetName);
QFile *file = new QFile(resource.fileName());
file->open(QFile::ReadOnly | QFile::Text);
QTextStream in(file);
2021-02-19 11:19:11 +08:00
in.setEncoding(QStringConverter::Encoding::Utf8);
2021-02-04 16:59:58 +08:00
QString content = in.readAll();
file->close();
delete file;
return content;
}
template <typename Base, typename T>
static inline bool instanceof (const T *) {
return std::is_base_of<Base, T>::value;
}
2021-02-04 16:59:58 +08:00
};
#endif // UTILS_H