私は次のものを持っています:
QString themePath(":/themes/");
std::vector<QString> resourcePaths;
resourcePaths.push_back(QString("html/details.html"));
std::vector<QFile> resources;
for (std::vector<QString>::iterator it = resourcePaths.begin(); it != resourcePaths.end(); ++it) {
QString path = QString("%1%2/%3").arg(themePath, THEME, *it);
QFile resource(path);
resources.push_back(resource);
}
次のエラーが表示されます
error: 'QFile::QFile(const QFile&)' is private
。
std::vector の代わりに QList を使用すると、同じエラーが発生します。
ご清聴ありがとうございました。